home *** CD-ROM | disk | FTP | other *** search
/ Ray Dream Studio / Ray Dream Studio (CDRAYD1) (Ray Dream) (1995).iso / DREAMSDK.WIN / INCLUDE / RSCODE.H < prev    next >
C/C++ Source or Header  |  1995-09-23  |  175KB  |  8,872 lines

  1. /* $Id: RSCODE.H 1.6 1995/09/19 00:07:52 PascalF Exp $ */
  2. /*****************************************************************************\
  3. *                                                                             *
  4. * scode.h -     Defines standard status code services.                          *
  5. *                                                                             *
  6. *               OLE Version 2.0                                               *
  7. *                                                                             *
  8. *               Copyright (c) 1992-1993, Microsoft Corp. All rights reserved. *
  9. *                                                                             *
  10. \*****************************************************************************/
  11.  
  12.  
  13. #ifndef __SCODE_H__
  14. #define __SCODE_H__
  15.  
  16. //
  17. // SCODE
  18. //
  19.  
  20. typedef long SCODE;
  21. typedef SCODE *PSCODE;
  22. typedef void FAR * HRESULT;
  23. #define NOERROR 0
  24.  
  25.  
  26. //
  27. //  Values are 32 bit values layed out as follows:
  28. //
  29. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  30. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  31. //  +---+-+-+-----------------------+-------------------------------+
  32. //  |Sev|C|R|     Facility          |               Code            |
  33. //  +---+-+-+-----------------------+-------------------------------+
  34. //
  35. //  where
  36. //
  37. //      Sev - is the severity code
  38. //
  39. //          00 - Success
  40. //          01 - Informational
  41. //          10 - Warning
  42. //          11 - Error
  43. //
  44. //      C - is the Customer code flag
  45. //
  46. //      R - is a reserved bit
  47. //
  48. //      Facility - is the facility code
  49. //
  50. //      Code - is the facility's status code
  51. //
  52. //
  53. // Define the facility codes
  54. //
  55. #define FACILITY_WINDOWS                 8
  56. #define FACILITY_STORAGE                 3
  57. #define FACILITY_RPC                     1
  58. #define FACILITY_WIN32                   7
  59. #define FACILITY_CONTROL                 10
  60. #define FACILITY_NULL                    0
  61. #define FACILITY_ITF                     4
  62. #define FACILITY_DISPATCH                2
  63.  
  64.  
  65. //
  66. // Define the severity codes
  67. //
  68.  
  69.  
  70. //
  71. // MessageId: ERROR_SUCCESS
  72. //
  73. // MessageText:
  74. //
  75. //  The operation completed successfully.
  76. //
  77. #define ERROR_SUCCESS                    0L
  78.  
  79. #define NO_ERROR 0L                                                 // dderror
  80.  
  81. //
  82. // MessageId: ERROR_INVALID_FUNCTION
  83. //
  84. // MessageText:
  85. //
  86. //  Incorrect function.
  87. //
  88. #define ERROR_INVALID_FUNCTION           1L    // dderror
  89.  
  90. //
  91. // MessageId: ERROR_FILE_NOT_FOUND
  92. //
  93. // MessageText:
  94. //
  95. //  The system cannot find the file specified.
  96. //
  97. #define ERROR_FILE_NOT_FOUND             2L
  98.  
  99. //
  100. // MessageId: ERROR_PATH_NOT_FOUND
  101. //
  102. // MessageText:
  103. //
  104. //  The system cannot find the path specified.
  105. //
  106. #define ERROR_PATH_NOT_FOUND             3L
  107.  
  108. //
  109. // MessageId: ERROR_TOO_MANY_OPEN_FILES
  110. //
  111. // MessageText:
  112. //
  113. //  The system cannot open the file.
  114. //
  115. #define ERROR_TOO_MANY_OPEN_FILES        4L
  116.  
  117. //
  118. // MessageId: ERROR_ACCESS_DENIED
  119. //
  120. // MessageText:
  121. //
  122. //  Access is denied.
  123. //
  124. #define ERROR_ACCESS_DENIED              5L
  125.  
  126. //
  127. // MessageId: ERROR_INVALID_HANDLE
  128. //
  129. // MessageText:
  130. //
  131. //  The handle is invalid.
  132. //
  133. #define ERROR_INVALID_HANDLE             6L
  134.  
  135. //
  136. // MessageId: ERROR_ARENA_TRASHED
  137. //
  138. // MessageText:
  139. //
  140. //  The storage control blocks were destroyed.
  141. //
  142. #define ERROR_ARENA_TRASHED              7L
  143.  
  144. //
  145. // MessageId: ERROR_NOT_ENOUGH_MEMORY
  146. //
  147. // MessageText:
  148. //
  149. //  Not enough storage is available to process this command.
  150. //
  151. #define ERROR_NOT_ENOUGH_MEMORY          8L    // dderror
  152.  
  153. //
  154. // MessageId: ERROR_INVALID_BLOCK
  155. //
  156. // MessageText:
  157. //
  158. //  The storage control block address is invalid.
  159. //
  160. #define ERROR_INVALID_BLOCK              9L
  161.  
  162. //
  163. // MessageId: ERROR_BAD_ENVIRONMENT
  164. //
  165. // MessageText:
  166. //
  167. //  The environment is incorrect.
  168. //
  169. #define ERROR_BAD_ENVIRONMENT            10L
  170.  
  171. //
  172. // MessageId: ERROR_BAD_FORMAT
  173. //
  174. // MessageText:
  175. //
  176. //  An attempt was made to load a program with an
  177. //  incorrect format.
  178. //
  179. #define ERROR_BAD_FORMAT                 11L
  180.  
  181. //
  182. // MessageId: ERROR_INVALID_ACCESS
  183. //
  184. // MessageText:
  185. //
  186. //  The access code is invalid.
  187. //
  188. #define ERROR_INVALID_ACCESS             12L
  189.  
  190. //
  191. // MessageId: ERROR_INVALID_DATA
  192. //
  193. // MessageText:
  194. //
  195. //  The data is invalid.
  196. //
  197. #define ERROR_INVALID_DATA               13L
  198.  
  199. //
  200. // MessageId: ERROR_OUTOFMEMORY
  201. //
  202. // MessageText:
  203. //
  204. //  Not enough storage is available to complete this operation.
  205. //
  206. #define ERROR_OUTOFMEMORY                14L
  207.  
  208. //
  209. // MessageId: ERROR_INVALID_DRIVE
  210. //
  211. // MessageText:
  212. //
  213. //  The system cannot find the drive specified.
  214. //
  215. #define ERROR_INVALID_DRIVE              15L
  216.  
  217. //
  218. // MessageId: ERROR_CURRENT_DIRECTORY
  219. //
  220. // MessageText:
  221. //
  222. //  The directory cannot be removed.
  223. //
  224. #define ERROR_CURRENT_DIRECTORY          16L
  225.  
  226. //
  227. // MessageId: ERROR_NOT_SAME_DEVICE
  228. //
  229. // MessageText:
  230. //
  231. //  The system cannot move the file
  232. //  to a different disk drive.
  233. //
  234. #define ERROR_NOT_SAME_DEVICE            17L
  235.  
  236. //
  237. // MessageId: ERROR_NO_MORE_FILES
  238. //
  239. // MessageText:
  240. //
  241. //  There are no more files.
  242. //
  243. #define ERROR_NO_MORE_FILES              18L
  244.  
  245. //
  246. // MessageId: ERROR_WRITE_PROTECT
  247. //
  248. // MessageText:
  249. //
  250. //  The media is write protected.
  251. //
  252. #define ERROR_WRITE_PROTECT              19L
  253.  
  254. //
  255. // MessageId: ERROR_BAD_UNIT
  256. //
  257. // MessageText:
  258. //
  259. //  The system cannot find the device specified.
  260. //
  261. #define ERROR_BAD_UNIT                   20L
  262.  
  263. //
  264. // MessageId: ERROR_NOT_READY
  265. //
  266. // MessageText:
  267. //
  268. //  The device is not ready.
  269. //
  270. #define ERROR_NOT_READY                  21L
  271.  
  272. //
  273. // MessageId: ERROR_BAD_COMMAND
  274. //
  275. // MessageText:
  276. //
  277. //  The device does not recognize the command.
  278. //
  279. #define ERROR_BAD_COMMAND                22L
  280.  
  281. //
  282. // MessageId: ERROR_CRC
  283. //
  284. // MessageText:
  285. //
  286. //  Data error (cyclic redundancy check)
  287. //
  288. #define ERROR_CRC                        23L
  289.  
  290. //
  291. // MessageId: ERROR_BAD_LENGTH
  292. //
  293. // MessageText:
  294. //
  295. //  The program issued a command but the
  296. //  command length is incorrect.
  297. //
  298. #define ERROR_BAD_LENGTH                 24L
  299.  
  300. //
  301. // MessageId: ERROR_SEEK
  302. //
  303. // MessageText:
  304. //
  305. //  The drive cannot locate a specific
  306. //  area or track on the disk.
  307. //
  308. #define ERROR_SEEK                       25L
  309.  
  310. //
  311. // MessageId: ERROR_NOT_DOS_DISK
  312. //
  313. // MessageText:
  314. //
  315. //  The specified disk or diskette cannot be accessed.
  316. //
  317. #define ERROR_NOT_DOS_DISK               26L
  318.  
  319. //
  320. // MessageId: ERROR_SECTOR_NOT_FOUND
  321. //
  322. // MessageText:
  323. //
  324. //  The drive cannot find the sector requested.
  325. //
  326. #define ERROR_SECTOR_NOT_FOUND           27L
  327.  
  328. //
  329. // MessageId: ERROR_OUT_OF_PAPER
  330. //
  331. // MessageText:
  332. //
  333. //  The printer is out of paper.
  334. //
  335. #define ERROR_OUT_OF_PAPER               28L
  336.  
  337. //
  338. // MessageId: ERROR_WRITE_FAULT
  339. //
  340. // MessageText:
  341. //
  342. //  The system cannot write to the specified device.
  343. //
  344. #define ERROR_WRITE_FAULT                29L
  345.  
  346. //
  347. // MessageId: ERROR_READ_FAULT
  348. //
  349. // MessageText:
  350. //
  351. //  The system cannot read from the specified device.
  352. //
  353. #define ERROR_READ_FAULT                 30L
  354.  
  355. //
  356. // MessageId: ERROR_GEN_FAILURE
  357. //
  358. // MessageText:
  359. //
  360. //  A device attached to the system is not functioning.
  361. //
  362. #define ERROR_GEN_FAILURE                31L
  363.  
  364. //
  365. // MessageId: ERROR_SHARING_VIOLATION
  366. //
  367. // MessageText:
  368. //
  369. //  The process cannot access the file because
  370. //  it is being used by another process.
  371. //
  372. #define ERROR_SHARING_VIOLATION          32L
  373.  
  374. //
  375. // MessageId: ERROR_LOCK_VIOLATION
  376. //
  377. // MessageText:
  378. //
  379. //  The process cannot access the file because
  380. //  another process has locked a portion of the file.
  381. //
  382. #define ERROR_LOCK_VIOLATION             33L
  383.  
  384. //
  385. // MessageId: ERROR_WRONG_DISK
  386. //
  387. // MessageText:
  388. //
  389. //  The wrong diskette is in the drive.
  390. //  Insert %2 (Volume Serial Number: %3)
  391. //  into drive %1.
  392. //
  393. #define ERROR_WRONG_DISK                 34L
  394.  
  395. //
  396. // MessageId: ERROR_SHARING_BUFFER_EXCEEDED
  397. //
  398. // MessageText:
  399. //
  400. //  Too many files opened for sharing.
  401. //
  402. #define ERROR_SHARING_BUFFER_EXCEEDED    36L
  403.  
  404. //
  405. // MessageId: ERROR_HANDLE_EOF
  406. //
  407. // MessageText:
  408. //
  409. //  Reached end of file.
  410. //
  411. #define ERROR_HANDLE_EOF                 38L
  412.  
  413. //
  414. // MessageId: ERROR_HANDLE_DISK_FULL
  415. //
  416. // MessageText:
  417. //
  418. //  The disk is full.
  419. //
  420. #define ERROR_HANDLE_DISK_FULL           39L
  421.  
  422. //
  423. // MessageId: ERROR_NOT_SUPPORTED
  424. //
  425. // MessageText:
  426. //
  427. //  The network request is not supported.
  428. //
  429. #define ERROR_NOT_SUPPORTED              50L
  430.  
  431. //
  432. // MessageId: ERROR_REM_NOT_LIST
  433. //
  434. // MessageText:
  435. //
  436. //  The remote computer is not available.
  437. //
  438. #define ERROR_REM_NOT_LIST               51L
  439.  
  440. //
  441. // MessageId: ERROR_DUP_NAME
  442. //
  443. // MessageText:
  444. //
  445. //  A duplicate name exists on the network.
  446. //
  447. #define ERROR_DUP_NAME                   52L
  448.  
  449. //
  450. // MessageId: ERROR_BAD_NETPATH
  451. //
  452. // MessageText:
  453. //
  454. //  The network path was not found.
  455. //
  456. #define ERROR_BAD_NETPATH                53L
  457.  
  458. //
  459. // MessageId: ERROR_NETWORK_BUSY
  460. //
  461. // MessageText:
  462. //
  463. //  The network is busy.
  464. //
  465. #define ERROR_NETWORK_BUSY               54L
  466.  
  467. //
  468. // MessageId: ERROR_DEV_NOT_EXIST
  469. //
  470. // MessageText:
  471. //
  472. //  The specified network resource or device is no longer
  473. //  available.
  474. //
  475. #define ERROR_DEV_NOT_EXIST              55L    // dderror
  476.  
  477. //
  478. // MessageId: ERROR_TOO_MANY_CMDS
  479. //
  480. // MessageText:
  481. //
  482. //  The network BIOS command limit has been reached.
  483. //
  484. #define ERROR_TOO_MANY_CMDS              56L
  485.  
  486. //
  487. // MessageId: ERROR_ADAP_HDW_ERR
  488. //
  489. // MessageText:
  490. //
  491. //  A network adapter hardware error occurred.
  492. //
  493. #define ERROR_ADAP_HDW_ERR               57L
  494.  
  495. //
  496. // MessageId: ERROR_BAD_NET_RESP
  497. //
  498. // MessageText:
  499. //
  500. //  The specified server cannot perform the requested
  501. //  operation.
  502. //
  503. #define ERROR_BAD_NET_RESP               58L
  504.  
  505. //
  506. // MessageId: ERROR_UNEXP_NET_ERR
  507. //
  508. // MessageText:
  509. //
  510. //  An unexpected network error occurred.
  511. //
  512. #define ERROR_UNEXP_NET_ERR              59L
  513.  
  514. //
  515. // MessageId: ERROR_BAD_REM_ADAP
  516. //
  517. // MessageText:
  518. //
  519. //  The remote adapter is not compatible.
  520. //
  521. #define ERROR_BAD_REM_ADAP               60L
  522.  
  523. //
  524. // MessageId: ERROR_PRINTQ_FULL
  525. //
  526. // MessageText:
  527. //
  528. //  The printer queue is full.
  529. //
  530. #define ERROR_PRINTQ_FULL                61L
  531.  
  532. //
  533. // MessageId: ERROR_NO_SPOOL_SPACE
  534. //
  535. // MessageText:
  536. //
  537. //  Space to store the file waiting to be printed is
  538. //  not available on the server.
  539. //
  540. #define ERROR_NO_SPOOL_SPACE             62L
  541.  
  542. //
  543. // MessageId: ERROR_PRINT_CANCELLED
  544. //
  545. // MessageText:
  546. //
  547. //  Your file waiting to be printed was deleted.
  548. //
  549. #define ERROR_PRINT_CANCELLED            63L
  550.  
  551. //
  552. // MessageId: ERROR_NETNAME_DELETED
  553. //
  554. // MessageText:
  555. //
  556. //  The specified network name is no longer available.
  557. //
  558. #define ERROR_NETNAME_DELETED            64L
  559.  
  560. //
  561. // MessageId: ERROR_NETWORK_ACCESS_DENIED
  562. //
  563. // MessageText:
  564. //
  565. //  Network access is denied.
  566. //
  567. #define ERROR_NETWORK_ACCESS_DENIED      65L
  568.  
  569. //
  570. // MessageId: ERROR_BAD_DEV_TYPE
  571. //
  572. // MessageText:
  573. //
  574. //  The network resource type is not correct.
  575. //
  576. #define ERROR_BAD_DEV_TYPE               66L
  577.  
  578. //
  579. // MessageId: ERROR_BAD_NET_NAME
  580. //
  581. // MessageText:
  582. //
  583. //  The network name cannot be found.
  584. //
  585. #define ERROR_BAD_NET_NAME               67L
  586.  
  587. //
  588. // MessageId: ERROR_TOO_MANY_NAMES
  589. //
  590. // MessageText:
  591. //
  592. //  The name limit for the local computer network
  593. //  adapter card was exceeded.
  594. //
  595. #define ERROR_TOO_MANY_NAMES             68L
  596.  
  597. //
  598. // MessageId: ERROR_TOO_MANY_SESS
  599. //
  600. // MessageText:
  601. //
  602. //  The network BIOS session limit was exceeded.
  603. //
  604. #define ERROR_TOO_MANY_SESS              69L
  605.  
  606. //
  607. // MessageId: ERROR_SHARING_PAUSED
  608. //
  609. // MessageText:
  610. //
  611. //  The remote server has been paused or is in the
  612. //  process of being started.
  613. //
  614. #define ERROR_SHARING_PAUSED             70L
  615.  
  616. //
  617. // MessageId: ERROR_REQ_NOT_ACCEP
  618. //
  619. // MessageText:
  620. //
  621. //  No more connections can be made to this remote computer at this time
  622. //  because there are already as many connections as the computer can accept.
  623. //
  624. #define ERROR_REQ_NOT_ACCEP              71L
  625.  
  626. //
  627. // MessageId: ERROR_REDIR_PAUSED
  628. //
  629. // MessageText:
  630. //
  631. //  The specified printer or disk device has been paused.
  632. //
  633. #define ERROR_REDIR_PAUSED               72L
  634.  
  635. //
  636. // MessageId: ERROR_FILE_EXISTS
  637. //
  638. // MessageText:
  639. //
  640. //  The file exists.
  641. //
  642. #define ERROR_FILE_EXISTS                80L
  643.  
  644. //
  645. // MessageId: ERROR_CANNOT_MAKE
  646. //
  647. // MessageText:
  648. //
  649. //  The directory or file cannot be created.
  650. //
  651. #define ERROR_CANNOT_MAKE                82L
  652.  
  653. //
  654. // MessageId: ERROR_FAIL_I24
  655. //
  656. // MessageText:
  657. //
  658. //  Fail on INT 24
  659. //
  660. #define ERROR_FAIL_I24                   83L
  661.  
  662. //
  663. // MessageId: ERROR_OUT_OF_STRUCTURES
  664. //
  665. // MessageText:
  666. //
  667. //  Storage to process this request is not available.
  668. //
  669. #define ERROR_OUT_OF_STRUCTURES          84L
  670.  
  671. //
  672. // MessageId: ERROR_ALREADY_ASSIGNED
  673. //
  674. // MessageText:
  675. //
  676. //  The local device name is already in use.
  677. //
  678. #define ERROR_ALREADY_ASSIGNED           85L
  679.  
  680. //
  681. // MessageId: ERROR_INVALID_PASSWORD
  682. //
  683. // MessageText:
  684. //
  685. //  The specified network password is not correct.
  686. //
  687. #define ERROR_INVALID_PASSWORD           86L
  688.  
  689. //
  690. // MessageId: ERROR_INVALID_PARAMETER
  691. //
  692. // MessageText:
  693. //
  694. //  The parameter is incorrect.
  695. //
  696. #define ERROR_INVALID_PARAMETER          87L    // dderror
  697.  
  698. //
  699. // MessageId: ERROR_NET_WRITE_FAULT
  700. //
  701. // MessageText:
  702. //
  703. //  A write fault occurred on the network.
  704. //
  705. #define ERROR_NET_WRITE_FAULT            88L
  706.  
  707. //
  708. // MessageId: ERROR_NO_PROC_SLOTS
  709. //
  710. // MessageText:
  711. //
  712. //  The system cannot start another process at
  713. //  this time.
  714. //
  715. #define ERROR_NO_PROC_SLOTS              89L
  716.  
  717. //
  718. // MessageId: ERROR_TOO_MANY_SEMAPHORES
  719. //
  720. // MessageText:
  721. //
  722. //  Cannot create another system semaphore.
  723. //
  724. #define ERROR_TOO_MANY_SEMAPHORES        100L
  725.  
  726. //
  727. // MessageId: ERROR_EXCL_SEM_ALREADY_OWNED
  728. //
  729. // MessageText:
  730. //
  731. //  The exclusive semaphore is owned by another process.
  732. //
  733. #define ERROR_EXCL_SEM_ALREADY_OWNED     101L
  734.  
  735. //
  736. // MessageId: ERROR_SEM_IS_SET
  737. //
  738. // MessageText:
  739. //
  740. //  The semaphore is set and cannot be closed.
  741. //
  742. #define ERROR_SEM_IS_SET                 102L
  743.  
  744. //
  745. // MessageId: ERROR_TOO_MANY_SEM_REQUESTS
  746. //
  747. // MessageText:
  748. //
  749. //  The semaphore cannot be set again.
  750. //
  751. #define ERROR_TOO_MANY_SEM_REQUESTS      103L
  752.  
  753. //
  754. // MessageId: ERROR_INVALID_AT_INTERRUPT_TIME
  755. //
  756. // MessageText:
  757. //
  758. //  Cannot request exclusive semaphores at interrupt time.
  759. //
  760. #define ERROR_INVALID_AT_INTERRUPT_TIME  104L
  761.  
  762. //
  763. // MessageId: ERROR_SEM_OWNER_DIED
  764. //
  765. // MessageText:
  766. //
  767. //  The previous ownership of this semaphore has ended.
  768. //
  769. #define ERROR_SEM_OWNER_DIED             105L
  770.  
  771. //
  772. // MessageId: ERROR_SEM_USER_LIMIT
  773. //
  774. // MessageText:
  775. //
  776. //  Insert the diskette for drive %1.
  777. //
  778. #define ERROR_SEM_USER_LIMIT             106L
  779.  
  780. //
  781. // MessageId: ERROR_DISK_CHANGE
  782. //
  783. // MessageText:
  784. //
  785. //  Program stopped because alternate diskette was not inserted.
  786. //
  787. #define ERROR_DISK_CHANGE                107L
  788.  
  789. //
  790. // MessageId: ERROR_DRIVE_LOCKED
  791. //
  792. // MessageText:
  793. //
  794. //  The disk is in use or locked by
  795. //  another process.
  796. //
  797. #define ERROR_DRIVE_LOCKED               108L
  798.  
  799. //
  800. // MessageId: ERROR_BROKEN_PIPE
  801. //
  802. // MessageText:
  803. //
  804. //  The pipe has been ended.
  805. //
  806. #define ERROR_BROKEN_PIPE                109L
  807.  
  808. //
  809. // MessageId: ERROR_OPEN_FAILED
  810. //
  811. // MessageText:
  812. //
  813. //  The system cannot open the
  814. //  device or file specified.
  815. //
  816. #define ERROR_OPEN_FAILED                110L
  817.  
  818. //
  819. // MessageId: ERROR_BUFFER_OVERFLOW
  820. //
  821. // MessageText:
  822. //
  823. //  The file name is too long.
  824. //
  825. #define ERROR_BUFFER_OVERFLOW            111L
  826.  
  827. //
  828. // MessageId: ERROR_DISK_FULL
  829. //
  830. // MessageText:
  831. //
  832. //  There is not enough space on the disk.
  833. //
  834. #define ERROR_DISK_FULL                  112L
  835.  
  836. //
  837. // MessageId: ERROR_NO_MORE_SEARCH_HANDLES
  838. //
  839. // MessageText:
  840. //
  841. //  No more internal file identifiers available.
  842. //
  843. #define ERROR_NO_MORE_SEARCH_HANDLES     113L
  844.  
  845. //
  846. // MessageId: ERROR_INVALID_TARGET_HANDLE
  847. //
  848. // MessageText:
  849. //
  850. //  The target internal file identifier is incorrect.
  851. //
  852. #define ERROR_INVALID_TARGET_HANDLE      114L
  853.  
  854. //
  855. // MessageId: ERROR_INVALID_CATEGORY
  856. //
  857. // MessageText:
  858. //
  859. //  The IOCTL call made by the application program is
  860. //  not correct.
  861. //
  862. #define ERROR_INVALID_CATEGORY           117L
  863.  
  864. //
  865. // MessageId: ERROR_INVALID_VERIFY_SWITCH
  866. //
  867. // MessageText:
  868. //
  869. //  The verify-on-write switch parameter value is not
  870. //  correct.
  871. //
  872. #define ERROR_INVALID_VERIFY_SWITCH      118L
  873.  
  874. //
  875. // MessageId: ERROR_BAD_DRIVER_LEVEL
  876. //
  877. // MessageText:
  878. //
  879. //  The system does not support the command requested.
  880. //
  881. #define ERROR_BAD_DRIVER_LEVEL           119L
  882.  
  883. //
  884. // MessageId: ERROR_CALL_NOT_IMPLEMENTED
  885. //
  886. // MessageText:
  887. //
  888. //  This function is only valid in Win32 mode.
  889. //
  890. #define ERROR_CALL_NOT_IMPLEMENTED       120L
  891.  
  892. //
  893. // MessageId: ERROR_SEM_TIMEOUT
  894. //
  895. // MessageText:
  896. //
  897. //  The semaphore timeout period has expired.
  898. //
  899. #define ERROR_SEM_TIMEOUT                121L
  900.  
  901. //
  902. // MessageId: ERROR_INSUFFICIENT_BUFFER
  903. //
  904. // MessageText:
  905. //
  906. //  The data area passed to a system call is too
  907. //  small.
  908. //
  909. #define ERROR_INSUFFICIENT_BUFFER        122L    // dderror
  910.  
  911. //
  912. // MessageId: ERROR_INVALID_NAME
  913. //
  914. // MessageText:
  915. //
  916. //  The filename, directory name, or volume label syntax is incorrect.
  917. //
  918. #define ERROR_INVALID_NAME               123L
  919.  
  920. //
  921. // MessageId: ERROR_INVALID_LEVEL
  922. //
  923. // MessageText:
  924. //
  925. //  The system call level is not correct.
  926. //
  927. #define ERROR_INVALID_LEVEL              124L
  928.  
  929. //
  930. // MessageId: ERROR_NO_VOLUME_LABEL
  931. //
  932. // MessageText:
  933. //
  934. //  The disk has no volume label.
  935. //
  936. #define ERROR_NO_VOLUME_LABEL            125L
  937.  
  938. //
  939. // MessageId: ERROR_MOD_NOT_FOUND
  940. //
  941. // MessageText:
  942. //
  943. //  The specified module could not be found.
  944. //
  945. #define ERROR_MOD_NOT_FOUND              126L
  946.  
  947. //
  948. // MessageId: ERROR_PROC_NOT_FOUND
  949. //
  950. // MessageText:
  951. //
  952. //  The specified procedure could not be found.
  953. //
  954. #define ERROR_PROC_NOT_FOUND             127L
  955.  
  956. //
  957. // MessageId: ERROR_WAIT_NO_CHILDREN
  958. //
  959. // MessageText:
  960. //
  961. //  There are no child processes to wait for.
  962. //
  963. #define ERROR_WAIT_NO_CHILDREN           128L
  964.  
  965. //
  966. // MessageId: ERROR_CHILD_NOT_COMPLETE
  967. //
  968. // MessageText:
  969. //
  970. //  The %1 application cannot be run in Win32 mode.
  971. //
  972. #define ERROR_CHILD_NOT_COMPLETE         129L
  973.  
  974. //
  975. // MessageId: ERROR_DIRECT_ACCESS_HANDLE
  976. //
  977. // MessageText:
  978. //
  979. //  Attempt to use a file handle to an open disk partition for an
  980. //  operation other than raw disk I/O.
  981. //
  982. #define ERROR_DIRECT_ACCESS_HANDLE       130L
  983.  
  984. //
  985. // MessageId: ERROR_NEGATIVE_SEEK
  986. //
  987. // MessageText:
  988. //
  989. //  An attempt was made to move the file pointer before the beginning of the file.
  990. //
  991. #define ERROR_NEGATIVE_SEEK              131L
  992.  
  993. //
  994. // MessageId: ERROR_SEEK_ON_DEVICE
  995. //
  996. // MessageText:
  997. //
  998. //  The file pointer cannot be set on the specified device or file.
  999. //
  1000. #define ERROR_SEEK_ON_DEVICE             132L
  1001.  
  1002. //
  1003. // MessageId: ERROR_IS_JOIN_TARGET
  1004. //
  1005. // MessageText:
  1006. //
  1007. //  A JOIN or SUBST command
  1008. //  cannot be used for a drive that
  1009. //  contains previously joined drives.
  1010. //
  1011. #define ERROR_IS_JOIN_TARGET             133L
  1012.  
  1013. //
  1014. // MessageId: ERROR_IS_JOINED
  1015. //
  1016. // MessageText:
  1017. //
  1018. //  An attempt was made to use a
  1019. //  JOIN or SUBST command on a drive that has
  1020. //  already been joined.
  1021. //
  1022. #define ERROR_IS_JOINED                  134L
  1023.  
  1024. //
  1025. // MessageId: ERROR_IS_SUBSTED
  1026. //
  1027. // MessageText:
  1028. //
  1029. //  An attempt was made to use a
  1030. //  JOIN or SUBST command on a drive that has
  1031. //  already been substituted.
  1032. //
  1033. #define ERROR_IS_SUBSTED                 135L
  1034.  
  1035. //
  1036. // MessageId: ERROR_NOT_JOINED
  1037. //
  1038. // MessageText:
  1039. //
  1040. //  The system tried to delete
  1041. //  the JOIN of a drive that is not joined.
  1042. //
  1043. #define ERROR_NOT_JOINED                 136L
  1044.  
  1045. //
  1046. // MessageId: ERROR_NOT_SUBSTED
  1047. //
  1048. // MessageText:
  1049. //
  1050. //  The system tried to delete the
  1051. //  substitution of a drive that is not substituted.
  1052. //
  1053. #define ERROR_NOT_SUBSTED                137L
  1054.  
  1055. //
  1056. // MessageId: ERROR_JOIN_TO_JOIN
  1057. //
  1058. // MessageText:
  1059. //
  1060. //  The system tried to join a drive
  1061. //  to a directory on a joined drive.
  1062. //
  1063. #define ERROR_JOIN_TO_JOIN               138L
  1064.  
  1065. //
  1066. // MessageId: ERROR_SUBST_TO_SUBST
  1067. //
  1068. // MessageText:
  1069. //
  1070. //  The system tried to substitute a
  1071. //  drive to a directory on a substituted drive.
  1072. //
  1073. #define ERROR_SUBST_TO_SUBST             139L
  1074.  
  1075. //
  1076. // MessageId: ERROR_JOIN_TO_SUBST
  1077. //
  1078. // MessageText:
  1079. //
  1080. //  The system tried to join a drive to
  1081. //  a directory on a substituted drive.
  1082. //
  1083. #define ERROR_JOIN_TO_SUBST              140L
  1084.  
  1085. //
  1086. // MessageId: ERROR_SUBST_TO_JOIN
  1087. //
  1088. // MessageText:
  1089. //
  1090. //  The system tried to SUBST a drive
  1091. //  to a directory on a joined drive.
  1092. //
  1093. #define ERROR_SUBST_TO_JOIN              141L
  1094.  
  1095. //
  1096. // MessageId: ERROR_BUSY_DRIVE
  1097. //
  1098. // MessageText:
  1099. //
  1100. //  The system cannot perform a JOIN or SUBST at this time.
  1101. //
  1102. #define ERROR_BUSY_DRIVE                 142L
  1103.  
  1104. //
  1105. // MessageId: ERROR_SAME_DRIVE
  1106. //
  1107. // MessageText:
  1108. //
  1109. //  The system cannot join or substitute a
  1110. //  drive to or for a directory on the same drive.
  1111. //
  1112. #define ERROR_SAME_DRIVE                 143L
  1113.  
  1114. //
  1115. // MessageId: ERROR_DIR_NOT_ROOT
  1116. //
  1117. // MessageText:
  1118. //
  1119. //  The directory is not a subdirectory of the root directory.
  1120. //
  1121. #define ERROR_DIR_NOT_ROOT               144L
  1122.  
  1123. //
  1124. // MessageId: ERROR_DIR_NOT_EMPTY
  1125. //
  1126. // MessageText:
  1127. //
  1128. //  The directory is not empty.
  1129. //
  1130. #define ERROR_DIR_NOT_EMPTY              145L
  1131.  
  1132. //
  1133. // MessageId: ERROR_IS_SUBST_PATH
  1134. //
  1135. // MessageText:
  1136. //
  1137. //  The path specified is being used in
  1138. //  a substitute.
  1139. //
  1140. #define ERROR_IS_SUBST_PATH              146L
  1141.  
  1142. //
  1143. // MessageId: ERROR_IS_JOIN_PATH
  1144. //
  1145. // MessageText:
  1146. //
  1147. //  Not enough resources are available to
  1148. //  process this command.
  1149. //
  1150. #define ERROR_IS_JOIN_PATH               147L
  1151.  
  1152. //
  1153. // MessageId: ERROR_PATH_BUSY
  1154. //
  1155. // MessageText:
  1156. //
  1157. //  The path specified cannot be used at this time.
  1158. //
  1159. #define ERROR_PATH_BUSY                  148L
  1160.  
  1161. //
  1162. // MessageId: ERROR_IS_SUBST_TARGET
  1163. //
  1164. // MessageText:
  1165. //
  1166. //  An attempt was made to join
  1167. //  or substitute a drive for which a directory
  1168. //  on the drive is the target of a previous
  1169. //  substitute.
  1170. //
  1171. #define ERROR_IS_SUBST_TARGET            149L
  1172.  
  1173. //
  1174. // MessageId: ERROR_SYSTEM_TRACE
  1175. //
  1176. // MessageText:
  1177. //
  1178. //  System trace information was not specified in your
  1179. //  CONFIG.SYS file, or tracing is disallowed.
  1180. //
  1181. #define ERROR_SYSTEM_TRACE               150L
  1182.  
  1183. //
  1184. // MessageId: ERROR_INVALID_EVENT_COUNT
  1185. //
  1186. // MessageText:
  1187. //
  1188. //  The number of specified semaphore events for
  1189. //  DosMuxSemWait is not correct.
  1190. //
  1191. #define ERROR_INVALID_EVENT_COUNT        151L
  1192.  
  1193. //
  1194. // MessageId: ERROR_TOO_MANY_MUXWAITERS
  1195. //
  1196. // MessageText:
  1197. //
  1198. //  DosMuxSemWait did not execute; too many semaphores
  1199. //  are already set.
  1200. //
  1201. #define ERROR_TOO_MANY_MUXWAITERS        152L
  1202.  
  1203. //
  1204. // MessageId: ERROR_INVALID_LIST_FORMAT
  1205. //
  1206. // MessageText:
  1207. //
  1208. //  The DosMuxSemWait list is not correct.
  1209. //
  1210. #define ERROR_INVALID_LIST_FORMAT        153L
  1211.  
  1212. //
  1213. // MessageId: ERROR_LABEL_TOO_LONG
  1214. //
  1215. // MessageText:
  1216. //
  1217. //  The volume label you entered exceeds the label character
  1218. //  limit of the target file system.
  1219. //
  1220. #define ERROR_LABEL_TOO_LONG             154L
  1221.  
  1222. //
  1223. // MessageId: ERROR_TOO_MANY_TCBS
  1224. //
  1225. // MessageText:
  1226. //
  1227. //  Cannot create another thread.
  1228. //
  1229. #define ERROR_TOO_MANY_TCBS              155L
  1230.  
  1231. //
  1232. // MessageId: ERROR_SIGNAL_REFUSED
  1233. //
  1234. // MessageText:
  1235. //
  1236. //  The recipient process has refused the signal.
  1237. //
  1238. #define ERROR_SIGNAL_REFUSED             156L
  1239.  
  1240. //
  1241. // MessageId: ERROR_DISCARDED
  1242. //
  1243. // MessageText:
  1244. //
  1245. //  The segment is already discarded and cannot be locked.
  1246. //
  1247. #define ERROR_DISCARDED                  157L
  1248.  
  1249. //
  1250. // MessageId: ERROR_NOT_LOCKED
  1251. //
  1252. // MessageText:
  1253. //
  1254. //  The segment is already unlocked.
  1255. //
  1256. #define ERROR_NOT_LOCKED                 158L
  1257.  
  1258. //
  1259. // MessageId: ERROR_BAD_THREADID_ADDR
  1260. //
  1261. // MessageText:
  1262. //
  1263. //  The address for the thread ID is not correct.
  1264. //
  1265. #define ERROR_BAD_THREADID_ADDR          159L
  1266.  
  1267. //
  1268. // MessageId: ERROR_BAD_ARGUMENTS
  1269. //
  1270. // MessageText:
  1271. //
  1272. //  The argument string passed to DosExecPgm is not correct.
  1273. //
  1274. #define ERROR_BAD_ARGUMENTS              160L
  1275.  
  1276. //
  1277. // MessageId: ERROR_BAD_PATHNAME
  1278. //
  1279. // MessageText:
  1280. //
  1281. //  The specified path is invalid.
  1282. //
  1283. #define ERROR_BAD_PATHNAME               161L
  1284.  
  1285. //
  1286. // MessageId: ERROR_SIGNAL_PENDING
  1287. //
  1288. // MessageText:
  1289. //
  1290. //  A signal is already pending.
  1291. //
  1292. #define ERROR_SIGNAL_PENDING             162L
  1293.  
  1294. //
  1295. // MessageId: ERROR_MAX_THRDS_REACHED
  1296. //
  1297. // MessageText:
  1298. //
  1299. //  No more threads can be created in the system.
  1300. //
  1301. #define ERROR_MAX_THRDS_REACHED          164L
  1302.  
  1303. //
  1304. // MessageId: ERROR_LOCK_FAILED
  1305. //
  1306. // MessageText:
  1307. //
  1308. //  Unable to lock a region of a file.
  1309. //
  1310. #define ERROR_LOCK_FAILED                167L
  1311.  
  1312. //
  1313. // MessageId: ERROR_BUSY
  1314. //
  1315. // MessageText:
  1316. //
  1317. //  The requested resource is in use.
  1318. //
  1319. #define ERROR_BUSY                       170L
  1320.  
  1321. //
  1322. // MessageId: ERROR_CANCEL_VIOLATION
  1323. //
  1324. // MessageText:
  1325. //
  1326. //  A lock request was not outstanding for the supplied cancel region.
  1327. //
  1328. #define ERROR_CANCEL_VIOLATION           173L
  1329.  
  1330. //
  1331. // MessageId: ERROR_ATOMIC_LOCKS_NOT_SUPPORTED
  1332. //
  1333. // MessageText:
  1334. //
  1335. //  The file system does not support atomic changes to the lock type.
  1336. //
  1337. #define ERROR_ATOMIC_LOCKS_NOT_SUPPORTED 174L
  1338.  
  1339. //
  1340. // MessageId: ERROR_INVALID_SEGMENT_NUMBER
  1341. //
  1342. // MessageText:
  1343. //
  1344. //  The system detected a segment number that was not correct.
  1345. //
  1346. #define ERROR_INVALID_SEGMENT_NUMBER     180L
  1347.  
  1348. //
  1349. // MessageId: ERROR_INVALID_ORDINAL
  1350. //
  1351. // MessageText:
  1352. //
  1353. //  The operating system cannot run %1.
  1354. //
  1355. #define ERROR_INVALID_ORDINAL            182L
  1356.  
  1357. //
  1358. // MessageId: ERROR_ALREADY_EXISTS
  1359. //
  1360. // MessageText:
  1361. //
  1362. //  Cannot create a file when that file already exists.
  1363. //
  1364. #define ERROR_ALREADY_EXISTS             183L
  1365.  
  1366. //
  1367. // MessageId: ERROR_INVALID_FLAG_NUMBER
  1368. //
  1369. // MessageText:
  1370. //
  1371. //  The flag passed is not correct.
  1372. //
  1373. #define ERROR_INVALID_FLAG_NUMBER        186L
  1374.  
  1375. //
  1376. // MessageId: ERROR_SEM_NOT_FOUND
  1377. //
  1378. // MessageText:
  1379. //
  1380. //  The specified system semaphore name was not found.
  1381. //
  1382. #define ERROR_SEM_NOT_FOUND              187L
  1383.  
  1384. //
  1385. // MessageId: ERROR_INVALID_STARTING_CODESEG
  1386. //
  1387. // MessageText:
  1388. //
  1389. //  The operating system cannot run %1.
  1390. //
  1391. #define ERROR_INVALID_STARTING_CODESEG   188L
  1392.  
  1393. //
  1394. // MessageId: ERROR_INVALID_STACKSEG
  1395. //
  1396. // MessageText:
  1397. //
  1398. //  The operating system cannot run %1.
  1399. //
  1400. #define ERROR_INVALID_STACKSEG           189L
  1401.  
  1402. //
  1403. // MessageId: ERROR_INVALID_MODULETYPE
  1404. //
  1405. // MessageText:
  1406. //
  1407. //  The operating system cannot run %1.
  1408. //
  1409. #define ERROR_INVALID_MODULETYPE         190L
  1410.  
  1411. //
  1412. // MessageId: ERROR_INVALID_EXE_SIGNATURE
  1413. //
  1414. // MessageText:
  1415. //
  1416. //  Cannot run %1 in Win32 mode.
  1417. //
  1418. #define ERROR_INVALID_EXE_SIGNATURE      191L
  1419.  
  1420. //
  1421. // MessageId: ERROR_EXE_MARKED_INVALID
  1422. //
  1423. // MessageText:
  1424. //
  1425. //  The operating system cannot run %1.
  1426. //
  1427. #define ERROR_EXE_MARKED_INVALID         192L
  1428.  
  1429. //
  1430. // MessageId: ERROR_BAD_EXE_FORMAT
  1431. //
  1432. // MessageText:
  1433. //
  1434. //  %1 is not a valid Win32 application.
  1435. //
  1436. #define ERROR_BAD_EXE_FORMAT             193L
  1437.  
  1438. //
  1439. // MessageId: ERROR_ITERATED_DATA_EXCEEDS_64k
  1440. //
  1441. // MessageText:
  1442. //
  1443. //  The operating system cannot run %1.
  1444. //
  1445. #define ERROR_ITERATED_DATA_EXCEEDS_64k  194L
  1446.  
  1447. //
  1448. // MessageId: ERROR_INVALID_MINALLOCSIZE
  1449. //
  1450. // MessageText:
  1451. //
  1452. //  The operating system cannot run %1.
  1453. //
  1454. #define ERROR_INVALID_MINALLOCSIZE       195L
  1455.  
  1456. //
  1457. // MessageId: ERROR_DYNLINK_FROM_INVALID_RING
  1458. //
  1459. // MessageText:
  1460. //
  1461. //  The operating system cannot run this
  1462. //  application program.
  1463. //
  1464. #define ERROR_DYNLINK_FROM_INVALID_RING  196L
  1465.  
  1466. //
  1467. // MessageId: ERROR_IOPL_NOT_ENABLED
  1468. //
  1469. // MessageText:
  1470. //
  1471. //  The operating system is not presently
  1472. //  configured to run this application.
  1473. //
  1474. #define ERROR_IOPL_NOT_ENABLED           197L
  1475.  
  1476. //
  1477. // MessageId: ERROR_INVALID_SEGDPL
  1478. //
  1479. // MessageText:
  1480. //
  1481. //  The operating system cannot run %1.
  1482. //
  1483. #define ERROR_INVALID_SEGDPL             198L
  1484.  
  1485. //
  1486. // MessageId: ERROR_AUTODATASEG_EXCEEDS_64k
  1487. //
  1488. // MessageText:
  1489. //
  1490. //  The operating system cannot run this
  1491. //  application program.
  1492. //
  1493. #define ERROR_AUTODATASEG_EXCEEDS_64k    199L
  1494.  
  1495. //
  1496. // MessageId: ERROR_RING2SEG_MUST_BE_MOVABLE
  1497. //
  1498. // MessageText:
  1499. //
  1500. //  The code segment cannot be greater than or equal to 64KB.
  1501. //
  1502. #define ERROR_RING2SEG_MUST_BE_MOVABLE   200L
  1503.  
  1504. //
  1505. // MessageId: ERROR_RELOC_CHAIN_XEEDS_SEGLIM
  1506. //
  1507. // MessageText:
  1508. //
  1509. //  The operating system cannot run %1.
  1510. //
  1511. #define ERROR_RELOC_CHAIN_XEEDS_SEGLIM   201L
  1512.  
  1513. //
  1514. // MessageId: ERROR_INFLOOP_IN_RELOC_CHAIN
  1515. //
  1516. // MessageText:
  1517. //
  1518. //  The operating system cannot run %1.
  1519. //
  1520. #define ERROR_INFLOOP_IN_RELOC_CHAIN     202L
  1521.  
  1522. //
  1523. // MessageId: ERROR_ENVVAR_NOT_FOUND
  1524. //
  1525. // MessageText:
  1526. //
  1527. //  The system could not find the environment
  1528. //  option that was entered.
  1529. //
  1530. #define ERROR_ENVVAR_NOT_FOUND           203L
  1531.  
  1532. //
  1533. // MessageId: ERROR_NO_SIGNAL_SENT
  1534. //
  1535. // MessageText:
  1536. //
  1537. //  No process in the command subtree has a
  1538. //  signal handler.
  1539. //
  1540. #define ERROR_NO_SIGNAL_SENT             205L
  1541.  
  1542. //
  1543. // MessageId: ERROR_FILENAME_EXCED_RANGE
  1544. //
  1545. // MessageText:
  1546. //
  1547. //  The filename or extension is too long.
  1548. //
  1549. #define ERROR_FILENAME_EXCED_RANGE       206L
  1550.  
  1551. //
  1552. // MessageId: ERROR_RING2_STACK_IN_USE
  1553. //
  1554. // MessageText:
  1555. //
  1556. //  The ring 2 stack is in use.
  1557. //
  1558. #define ERROR_RING2_STACK_IN_USE         207L
  1559.  
  1560. //
  1561. // MessageId: ERROR_META_EXPANSION_TOO_LONG
  1562. //
  1563. // MessageText:
  1564. //
  1565. //  The global filename characters, * or ?, are entered
  1566. //  incorrectly or too many global filename characters are specified.
  1567. //
  1568. #define ERROR_META_EXPANSION_TOO_LONG    208L
  1569.  
  1570. //
  1571. // MessageId: ERROR_INVALID_SIGNAL_NUMBER
  1572. //
  1573. // MessageText:
  1574. //
  1575. //  The signal being posted is not correct.
  1576. //
  1577. #define ERROR_INVALID_SIGNAL_NUMBER      209L
  1578.  
  1579. //
  1580. // MessageId: ERROR_THREAD_1_INACTIVE
  1581. //
  1582. // MessageText:
  1583. //
  1584. //  The signal handler cannot be set.
  1585. //
  1586. #define ERROR_THREAD_1_INACTIVE          210L
  1587.  
  1588. //
  1589. // MessageId: ERROR_LOCKED
  1590. //
  1591. // MessageText:
  1592. //
  1593. //  The segment is locked and cannot be reallocated.
  1594. //
  1595. #define ERROR_LOCKED                     212L
  1596.  
  1597. //
  1598. // MessageId: ERROR_TOO_MANY_MODULES
  1599. //
  1600. // MessageText:
  1601. //
  1602. //  Too many dynamic link modules are attached to this
  1603. //  program or dynamic link module.
  1604. //
  1605. #define ERROR_TOO_MANY_MODULES           214L
  1606.  
  1607. //
  1608. // MessageId: ERROR_NESTING_NOT_ALLOWED
  1609. //
  1610. // MessageText:
  1611. //
  1612. //  Can't nest calls to LoadModule.
  1613. //
  1614. #define ERROR_NESTING_NOT_ALLOWED        215L
  1615.  
  1616. //
  1617. // MessageId: ERROR_BAD_PIPE
  1618. //
  1619. // MessageText:
  1620. //
  1621. //  The pipe state is invalid.
  1622. //
  1623. #define ERROR_BAD_PIPE                   230L
  1624.  
  1625. //
  1626. // MessageId: ERROR_PIPE_BUSY
  1627. //
  1628. // MessageText:
  1629. //
  1630. //  All pipe instances are busy.
  1631. //
  1632. #define ERROR_PIPE_BUSY                  231L
  1633.  
  1634. //
  1635. // MessageId: ERROR_NO_DATA
  1636. //
  1637. // MessageText:
  1638. //
  1639. //  The pipe is being closed.
  1640. //
  1641. #define ERROR_NO_DATA                    232L
  1642.  
  1643. //
  1644. // MessageId: ERROR_PIPE_NOT_CONNECTED
  1645. //
  1646. // MessageText:
  1647. //
  1648. //  No process is on the other end of the pipe.
  1649. //
  1650. #define ERROR_PIPE_NOT_CONNECTED         233L
  1651.  
  1652. //
  1653. // MessageId: ERROR_MORE_DATA
  1654. //
  1655. // MessageText:
  1656. //
  1657. //  More data is available.
  1658. //
  1659. #define ERROR_MORE_DATA                  234L    // dderror
  1660.  
  1661. //
  1662. // MessageId: ERROR_VC_DISCONNECTED
  1663. //
  1664. // MessageText:
  1665. //
  1666. //  The session was cancelled.
  1667. //
  1668. #define ERROR_VC_DISCONNECTED            240L
  1669.  
  1670. //
  1671. // MessageId: ERROR_INVALID_EA_NAME
  1672. //
  1673. // MessageText:
  1674. //
  1675. //  The specified extended attribute name was invalid.
  1676. //
  1677. #define ERROR_INVALID_EA_NAME            254L
  1678.  
  1679. //
  1680. // MessageId: ERROR_EA_LIST_INCONSISTENT
  1681. //
  1682. // MessageText:
  1683. //
  1684. //  The extended attributes are inconsistent.
  1685. //
  1686. #define ERROR_EA_LIST_INCONSISTENT       255L
  1687.  
  1688. //
  1689. // MessageId: ERROR_NO_MORE_ITEMS
  1690. //
  1691. // MessageText:
  1692. //
  1693. //  No more data is available.
  1694. //
  1695. #define ERROR_NO_MORE_ITEMS              259L
  1696.  
  1697. //
  1698. // MessageId: ERROR_CANNOT_COPY
  1699. //
  1700. // MessageText:
  1701. //
  1702. //  The Copy API cannot be used.
  1703. //
  1704. #define ERROR_CANNOT_COPY                266L
  1705.  
  1706. //
  1707. // MessageId: ERROR_DIRECTORY
  1708. //
  1709. // MessageText:
  1710. //
  1711. //  The directory name is invalid.
  1712. //
  1713. #define ERROR_DIRECTORY                  267L
  1714.  
  1715. //
  1716. // MessageId: ERROR_EAS_DIDNT_FIT
  1717. //
  1718. // MessageText:
  1719. //
  1720. //  The extended attributes did not fit in the buffer.
  1721. //
  1722. #define ERROR_EAS_DIDNT_FIT              275L
  1723.  
  1724. //
  1725. // MessageId: ERROR_EA_FILE_CORRUPT
  1726. //
  1727. // MessageText:
  1728. //
  1729. //  The extended attribute file on the mounted file system is corrupt.
  1730. //
  1731. #define ERROR_EA_FILE_CORRUPT            276L
  1732.  
  1733. //
  1734. // MessageId: ERROR_EA_TABLE_FULL
  1735. //
  1736. // MessageText:
  1737. //
  1738. //  The extended attribute table file is full.
  1739. //
  1740. #define ERROR_EA_TABLE_FULL              277L
  1741.  
  1742. //
  1743. // MessageId: ERROR_INVALID_EA_HANDLE
  1744. //
  1745. // MessageText:
  1746. //
  1747. //  The specified extended attribute handle is invalid.
  1748. //
  1749. #define ERROR_INVALID_EA_HANDLE          278L
  1750.  
  1751. //
  1752. // MessageId: ERROR_EAS_NOT_SUPPORTED
  1753. //
  1754. // MessageText:
  1755. //
  1756. //  The mounted file system does not support extended attributes.
  1757. //
  1758. #define ERROR_EAS_NOT_SUPPORTED          282L
  1759.  
  1760. //
  1761. // MessageId: ERROR_NOT_OWNER
  1762. //
  1763. // MessageText:
  1764. //
  1765. //  Attempt to release mutex not owned by caller.
  1766. //
  1767. #define ERROR_NOT_OWNER                  288L
  1768.  
  1769. //
  1770. // MessageId: ERROR_TOO_MANY_POSTS
  1771. //
  1772. // MessageText:
  1773. //
  1774. //  Too many posts were made to a semaphore.
  1775. //
  1776. #define ERROR_TOO_MANY_POSTS             298L
  1777.  
  1778. //
  1779. // MessageId: ERROR_PARTIAL_COPY
  1780. //
  1781. // MessageText:
  1782. //
  1783. //  Only part of a Read/WriteProcessMemory request was completed.
  1784. //
  1785. #define ERROR_PARTIAL_COPY               299L
  1786.  
  1787. //
  1788. // MessageId: ERROR_MR_MID_NOT_FOUND
  1789. //
  1790. // MessageText:
  1791. //
  1792. //  The system cannot find message for message number 0x%1
  1793. //  in message file for %2.
  1794. //
  1795. #define ERROR_MR_MID_NOT_FOUND           317L
  1796.  
  1797. //
  1798. // MessageId: ERROR_INVALID_ADDRESS
  1799. //
  1800. // MessageText:
  1801. //
  1802. //  Attempt to access invalid address.
  1803. //
  1804. #define ERROR_INVALID_ADDRESS            487L
  1805.  
  1806. //
  1807. // MessageId: ERROR_ARITHMETIC_OVERFLOW
  1808. //
  1809. // MessageText:
  1810. //
  1811. //  Arithmetic result exceeded 32 bits.
  1812. //
  1813. #define ERROR_ARITHMETIC_OVERFLOW        534L
  1814.  
  1815. //
  1816. // MessageId: ERROR_PIPE_CONNECTED
  1817. //
  1818. // MessageText:
  1819. //
  1820. //  There is a process on other end of the pipe.
  1821. //
  1822. #define ERROR_PIPE_CONNECTED             535L
  1823.  
  1824. //
  1825. // MessageId: ERROR_PIPE_LISTENING
  1826. //
  1827. // MessageText:
  1828. //
  1829. //  Waiting for a process to open the other end of the pipe.
  1830. //
  1831. #define ERROR_PIPE_LISTENING             536L
  1832.  
  1833. //
  1834. // MessageId: ERROR_EA_ACCESS_DENIED
  1835. //
  1836. // MessageText:
  1837. //
  1838. //  Access to the extended attribute was denied.
  1839. //
  1840. #define ERROR_EA_ACCESS_DENIED           994L
  1841.  
  1842. //
  1843. // MessageId: ERROR_OPERATION_ABORTED
  1844. //
  1845. // MessageText:
  1846. //
  1847. //  The I/O operation has been aborted because of either a thread exit
  1848. //  or an application request.
  1849. //
  1850. #define ERROR_OPERATION_ABORTED          995L
  1851.  
  1852. //
  1853. // MessageId: ERROR_IO_INCOMPLETE
  1854. //
  1855. // MessageText:
  1856. //
  1857. //  Overlapped I/O event is not in a signalled state.
  1858. //
  1859. #define ERROR_IO_INCOMPLETE              996L
  1860.  
  1861. //
  1862. // MessageId: ERROR_IO_PENDING
  1863. //
  1864. // MessageText:
  1865. //
  1866. //  Overlapped I/O operation is in progress.
  1867. //
  1868. #define ERROR_IO_PENDING                 997L    // dderror
  1869.  
  1870. //
  1871. // MessageId: ERROR_NOACCESS
  1872. //
  1873. // MessageText:
  1874. //
  1875. //  Invalid access to memory location.
  1876. //
  1877. #define ERROR_NOACCESS                   998L
  1878.  
  1879. //
  1880. // MessageId: ERROR_SWAPERROR
  1881. //
  1882. // MessageText:
  1883. //
  1884. //  Error performing inpage operation.
  1885. //
  1886. #define ERROR_SWAPERROR                  999L
  1887.  
  1888. //
  1889. // MessageId: ERROR_STACK_OVERFLOW
  1890. //
  1891. // MessageText:
  1892. //
  1893. //  Recursion too deep, stack overflowed.
  1894. //
  1895. #define ERROR_STACK_OVERFLOW             1001L
  1896.  
  1897. //
  1898. // MessageId: ERROR_INVALID_MESSAGE
  1899. //
  1900. // MessageText:
  1901. //
  1902. //  The window cannot act on the sent message.
  1903. //
  1904. #define ERROR_INVALID_MESSAGE            1002L
  1905.  
  1906. //
  1907. // MessageId: ERROR_CAN_NOT_COMPLETE
  1908. //
  1909. // MessageText:
  1910. //
  1911. //  Cannot complete this function.
  1912. //
  1913. #define ERROR_CAN_NOT_COMPLETE           1003L
  1914.  
  1915. //
  1916. // MessageId: ERROR_INVALID_FLAGS
  1917. //
  1918. // MessageText:
  1919. //
  1920. //  Invalid flags.
  1921. //
  1922. #define ERROR_INVALID_FLAGS              1004L
  1923.  
  1924. //
  1925. // MessageId: ERROR_UNRECOGNIZED_VOLUME
  1926. //
  1927. // MessageText:
  1928. //
  1929. //  The volume does not contain a recognized file system.
  1930. //  Please make sure that all required file system drivers are loaded and that the
  1931. //  volume is not corrupt.
  1932. //
  1933. #define ERROR_UNRECOGNIZED_VOLUME        1005L
  1934.  
  1935. //
  1936. // MessageId: ERROR_FILE_INVALID
  1937. //
  1938. // MessageText:
  1939. //
  1940. //  The volume for a file has been externally altered such that the
  1941. //  opened file is no longer valid.
  1942. //
  1943. #define ERROR_FILE_INVALID               1006L
  1944.  
  1945. //
  1946. // MessageId: ERROR_FULLSCREEN_MODE
  1947. //
  1948. // MessageText:
  1949. //
  1950. //  The requested operation cannot be performed in full-screen mode.
  1951. //
  1952. #define ERROR_FULLSCREEN_MODE            1007L
  1953.  
  1954. //
  1955. // MessageId: ERROR_NO_TOKEN
  1956. //
  1957. // MessageText:
  1958. //
  1959. //  An attempt was made to reference a token that does not exist.
  1960. //
  1961. #define ERROR_NO_TOKEN                   1008L
  1962.  
  1963. //
  1964. // MessageId: ERROR_BADDB
  1965. //
  1966. // MessageText:
  1967. //
  1968. //  The configuration registry database is corrupt.
  1969. //
  1970. #define ERROR_BADDB                      1009L
  1971.  
  1972. //
  1973. // MessageId: ERROR_BADKEY
  1974. //
  1975. // MessageText:
  1976. //
  1977. //  The configuration registry key is invalid.
  1978. //
  1979. #define ERROR_BADKEY                     1010L
  1980.  
  1981. //
  1982. // MessageId: ERROR_CANTOPEN
  1983. //
  1984. // MessageText:
  1985. //
  1986. //  The configuration registry key could not be opened.
  1987. //
  1988. #define ERROR_CANTOPEN                   1011L
  1989.  
  1990. //
  1991. // MessageId: ERROR_CANTREAD
  1992. //
  1993. // MessageText:
  1994. //
  1995. //  The configuration registry key could not be read.
  1996. //
  1997. #define ERROR_CANTREAD                   1012L
  1998.  
  1999. //
  2000. // MessageId: ERROR_CANTWRITE
  2001. //
  2002. // MessageText:
  2003. //
  2004. //  The configuration registry key could not be written.
  2005. //
  2006. #define ERROR_CANTWRITE                  1013L
  2007.  
  2008. //
  2009. // MessageId: ERROR_REGISTRY_RECOVERED
  2010. //
  2011. // MessageText:
  2012. //
  2013. //  One of the files in the Registry database had to be recovered
  2014. //  by use of a log or alternate copy.  The recovery was successful.
  2015. //
  2016. #define ERROR_REGISTRY_RECOVERED         1014L
  2017.  
  2018. //
  2019. // MessageId: ERROR_REGISTRY_CORRUPT
  2020. //
  2021. // MessageText:
  2022. //
  2023. //  The Registry is corrupt. The structure of one of the files that contains
  2024. //  Registry data is corrupt, or the system's image of the file in memory
  2025. //  is corrupt, or the file could not be recovered because the alternate
  2026. //  copy or log was absent or corrupt.
  2027. //
  2028. #define ERROR_REGISTRY_CORRUPT           1015L
  2029.  
  2030. //
  2031. // MessageId: ERROR_REGISTRY_IO_FAILED
  2032. //
  2033. // MessageText:
  2034. //
  2035. //  An I/O operation initiated by the Registry failed unrecoverably.
  2036. //  The Registry could not read in, or write out, or flush, one of the files
  2037. //  that contain the system's image of the Registry.
  2038. //
  2039. #define ERROR_REGISTRY_IO_FAILED         1016L
  2040.  
  2041. //
  2042. // MessageId: ERROR_NOT_REGISTRY_FILE
  2043. //
  2044. // MessageText:
  2045. //
  2046. //  The system has attempted to load or restore a file into the Registry, but the
  2047. //  specified file is not in a Registry file format.
  2048. //
  2049. #define ERROR_NOT_REGISTRY_FILE          1017L
  2050.  
  2051. //
  2052. // MessageId: ERROR_KEY_DELETED
  2053. //
  2054. // MessageText:
  2055. //
  2056. //  Illegal operation attempted on a Registry key which has been marked for deletion.
  2057. //
  2058. #define ERROR_KEY_DELETED                1018L
  2059.  
  2060. //
  2061. // MessageId: ERROR_NO_LOG_SPACE
  2062. //
  2063. // MessageText:
  2064. //
  2065. //  System could not allocate the required space in a Registry log.
  2066. //
  2067. #define ERROR_NO_LOG_SPACE               1019L
  2068.  
  2069. //
  2070. // MessageId: ERROR_KEY_HAS_CHILDREN
  2071. //
  2072. // MessageText:
  2073. //
  2074. //  Cannot create a symbolic link in a Registry key that already
  2075. //  has subkeys or values.
  2076. //
  2077. #define ERROR_KEY_HAS_CHILDREN           1020L
  2078.  
  2079. //
  2080. // MessageId: ERROR_CHILD_MUST_BE_VOLATILE
  2081. //
  2082. // MessageText:
  2083. //
  2084. //  Cannot create a stable subkey under a volatile parent key.
  2085. //
  2086. #define ERROR_CHILD_MUST_BE_VOLATILE     1021L
  2087.  
  2088. //
  2089. // MessageId: ERROR_NOTIFY_ENUM_DIR
  2090. //
  2091. // MessageText:
  2092. //
  2093. //  A notify change request is being completed and the information
  2094. //  is not being returned in the caller's buffer. The caller now
  2095. //  needs to enumerate the files to find the changes.
  2096. //
  2097. #define ERROR_NOTIFY_ENUM_DIR            1022L
  2098.  
  2099. //
  2100. // MessageId: ERROR_DEPENDENT_SERVICES_RUNNING
  2101. //
  2102. // MessageText:
  2103. //
  2104. //  A stop control has been sent to a service which other running services
  2105. //  are dependent on.
  2106. //
  2107. #define ERROR_DEPENDENT_SERVICES_RUNNING 1051L
  2108.  
  2109. //
  2110. // MessageId: ERROR_INVALID_SERVICE_CONTROL
  2111. //
  2112. // MessageText:
  2113. //
  2114. //  The requested control is not valid for this service
  2115. //
  2116. #define ERROR_INVALID_SERVICE_CONTROL    1052L
  2117.  
  2118. //
  2119. // MessageId: ERROR_SERVICE_REQUEST_TIMEOUT
  2120. //
  2121. // MessageText:
  2122. //
  2123. //  The service did not respond to the start or control request in a timely
  2124. //  fashion.
  2125. //
  2126. #define ERROR_SERVICE_REQUEST_TIMEOUT    1053L
  2127.  
  2128. //
  2129. // MessageId: ERROR_SERVICE_NO_THREAD
  2130. //
  2131. // MessageText:
  2132. //
  2133. //  A thread could not be created for the service.
  2134. //
  2135. #define ERROR_SERVICE_NO_THREAD          1054L
  2136.  
  2137. //
  2138. // MessageId: ERROR_SERVICE_DATABASE_LOCKED
  2139. //
  2140. // MessageText:
  2141. //
  2142. //  The service database is locked.
  2143. //
  2144. #define ERROR_SERVICE_DATABASE_LOCKED    1055L
  2145.  
  2146. //
  2147. // MessageId: ERROR_SERVICE_ALREADY_RUNNING
  2148. //
  2149. // MessageText:
  2150. //
  2151. //  An instance of the service is already running.
  2152. //
  2153. #define ERROR_SERVICE_ALREADY_RUNNING    1056L
  2154.  
  2155. //
  2156. // MessageId: ERROR_INVALID_SERVICE_ACCOUNT
  2157. //
  2158. // MessageText:
  2159. //
  2160. //  The account name is invalid or does not exist.
  2161. //
  2162. #define ERROR_INVALID_SERVICE_ACCOUNT    1057L
  2163.  
  2164. //
  2165. // MessageId: ERROR_SERVICE_DISABLED
  2166. //
  2167. // MessageText:
  2168. //
  2169. //  The specified service is disabled and cannot be started.
  2170. //
  2171. #define ERROR_SERVICE_DISABLED           1058L
  2172.  
  2173. //
  2174. // MessageId: ERROR_CIRCULAR_DEPENDENCY
  2175. //
  2176. // MessageText:
  2177. //
  2178. //  Circular service dependency was specified.
  2179. //
  2180. #define ERROR_CIRCULAR_DEPENDENCY        1059L
  2181.  
  2182. //
  2183. // MessageId: ERROR_SERVICE_DOES_NOT_EXIST
  2184. //
  2185. // MessageText:
  2186. //
  2187. //  The specified service does not exist as an installed service.
  2188. //
  2189. #define ERROR_SERVICE_DOES_NOT_EXIST     1060L
  2190.  
  2191. //
  2192. // MessageId: ERROR_SERVICE_CANNOT_ACCEPT_CTRL
  2193. //
  2194. // MessageText:
  2195. //
  2196. //  The service cannot accept control messages at this time.
  2197. //
  2198. #define ERROR_SERVICE_CANNOT_ACCEPT_CTRL 1061L
  2199.  
  2200. //
  2201. // MessageId: ERROR_SERVICE_NOT_ACTIVE
  2202. //
  2203. // MessageText:
  2204. //
  2205. //  The service has not been started.
  2206. //
  2207. #define ERROR_SERVICE_NOT_ACTIVE         1062L
  2208.  
  2209. //
  2210. // MessageId: ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
  2211. //
  2212. // MessageText:
  2213. //
  2214. //  The service process could not connect to the service controller.
  2215. //
  2216. #define ERROR_FAILED_SERVICE_CONTROLLER_CONNECT 1063L
  2217.  
  2218. //
  2219. // MessageId: ERROR_EXCEPTION_IN_SERVICE
  2220. //
  2221. // MessageText:
  2222. //
  2223. //  An exception occurred in the service when handling the control request.
  2224. //
  2225. #define ERROR_EXCEPTION_IN_SERVICE       1064L
  2226.  
  2227. //
  2228. // MessageId: ERROR_DATABASE_DOES_NOT_EXIST
  2229. //
  2230. // MessageText:
  2231. //
  2232. //  The database specified does not exist.
  2233. //
  2234. #define ERROR_DATABASE_DOES_NOT_EXIST    1065L
  2235.  
  2236. //
  2237. // MessageId: ERROR_SERVICE_SPECIFIC_ERROR
  2238. //
  2239. // MessageText:
  2240. //
  2241. //  The service has returned a service-specific error code.
  2242. //
  2243. #define ERROR_SERVICE_SPECIFIC_ERROR     1066L
  2244.  
  2245. //
  2246. // MessageId: ERROR_PROCESS_ABORTED
  2247. //
  2248. // MessageText:
  2249. //
  2250. //  The process terminated unexpectedly.
  2251. //
  2252. #define ERROR_PROCESS_ABORTED            1067L
  2253.  
  2254. //
  2255. // MessageId: ERROR_SERVICE_DEPENDENCY_FAIL
  2256. //
  2257. // MessageText:
  2258. //
  2259. //  The dependency service or group failed to start.
  2260. //
  2261. #define ERROR_SERVICE_DEPENDENCY_FAIL    1068L
  2262.  
  2263. //
  2264. // MessageId: ERROR_SERVICE_LOGON_FAILED
  2265. //
  2266. // MessageText:
  2267. //
  2268. //  The service did not start due to a logon failure.
  2269. //
  2270. #define ERROR_SERVICE_LOGON_FAILED       1069L
  2271.  
  2272. //
  2273. // MessageId: ERROR_SERVICE_START_HANG
  2274. //
  2275. // MessageText:
  2276. //
  2277. //  After starting, the service hung in a start-pending state.
  2278. //
  2279. #define ERROR_SERVICE_START_HANG         1070L
  2280.  
  2281. //
  2282. // MessageId: ERROR_INVALID_SERVICE_LOCK
  2283. //
  2284. // MessageText:
  2285. //
  2286. //  The specified service database lock is invalid.
  2287. //
  2288. #define ERROR_INVALID_SERVICE_LOCK       1071L
  2289.  
  2290. //
  2291. // MessageId: ERROR_SERVICE_MARKED_FOR_DELETE
  2292. //
  2293. // MessageText:
  2294. //
  2295. //  The specified service has been marked for deletion.
  2296. //
  2297. #define ERROR_SERVICE_MARKED_FOR_DELETE  1072L
  2298.  
  2299. //
  2300. // MessageId: ERROR_SERVICE_EXISTS
  2301. //
  2302. // MessageText:
  2303. //
  2304. //  The specified service already exists.
  2305. //
  2306. #define ERROR_SERVICE_EXISTS             1073L
  2307.  
  2308. //
  2309. // MessageId: ERROR_ALREADY_RUNNING_LKG
  2310. //
  2311. // MessageText:
  2312. //
  2313. //  The system is currently running with the last-known-good configuration.
  2314. //
  2315. #define ERROR_ALREADY_RUNNING_LKG        1074L
  2316.  
  2317. //
  2318. // MessageId: ERROR_SERVICE_DEPENDENCY_DELETED
  2319. //
  2320. // MessageText:
  2321. //
  2322. //  The dependency service does not exist or has been marked for
  2323. //  deletion.
  2324. //
  2325. #define ERROR_SERVICE_DEPENDENCY_DELETED 1075L
  2326.  
  2327. //
  2328. // MessageId: ERROR_BOOT_ALREADY_ACCEPTED
  2329. //
  2330. // MessageText:
  2331. //
  2332. //  The current boot has already been accepted for use as the
  2333. //  last-known-good control set.
  2334. //
  2335. #define ERROR_BOOT_ALREADY_ACCEPTED      1076L
  2336.  
  2337. //
  2338. // MessageId: ERROR_SERVICE_NEVER_STARTED
  2339. //
  2340. // MessageText:
  2341. //
  2342. //  No attempts to start the service have been made since the last boot.
  2343. //
  2344. #define ERROR_SERVICE_NEVER_STARTED      1077L
  2345.  
  2346. //
  2347. // MessageId: ERROR_DUPLICATE_SERVICE_NAME
  2348. //
  2349. // MessageText:
  2350. //
  2351. //  The name is already in use as either a service name or a service display
  2352. //  name.
  2353. //
  2354. #define ERROR_DUPLICATE_SERVICE_NAME     1078L
  2355.  
  2356. //
  2357. // MessageId: ERROR_END_OF_MEDIA
  2358. //
  2359. // MessageText:
  2360. //
  2361. //  The physical end of the tape has been reached.
  2362. //
  2363. #define ERROR_END_OF_MEDIA               1100L
  2364.  
  2365. //
  2366. // MessageId: ERROR_FILEMARK_DETECTED
  2367. //
  2368. // MessageText:
  2369. //
  2370. //  A tape access reached a filemark.
  2371. //
  2372. #define ERROR_FILEMARK_DETECTED          1101L
  2373.  
  2374. //
  2375. // MessageId: ERROR_BEGINNING_OF_MEDIA
  2376. //
  2377. // MessageText:
  2378. //
  2379. //  Beginning of tape or partition was encountered.
  2380. //
  2381. #define ERROR_BEGINNING_OF_MEDIA         1102L
  2382.  
  2383. //
  2384. // MessageId: ERROR_SETMARK_DETECTED
  2385. //
  2386. // MessageText:
  2387. //
  2388. //  A tape access reached the end of a set of files.
  2389. //
  2390. #define ERROR_SETMARK_DETECTED           1103L
  2391.  
  2392. //
  2393. // MessageId: ERROR_NO_DATA_DETECTED
  2394. //
  2395. // MessageText:
  2396. //
  2397. //  No more data is on the tape.
  2398. //
  2399. #define ERROR_NO_DATA_DETECTED           1104L
  2400.  
  2401. //
  2402. // MessageId: ERROR_PARTITION_FAILURE
  2403. //
  2404. // MessageText:
  2405. //
  2406. //  Tape could not be partitioned.
  2407. //
  2408. #define ERROR_PARTITION_FAILURE          1105L
  2409.  
  2410. //
  2411. // MessageId: ERROR_INVALID_BLOCK_LENGTH
  2412. //
  2413. // MessageText:
  2414. //
  2415. //  When accessing a new tape of a multivolume partition, the current
  2416. //  blocksize is incorrect.
  2417. //
  2418. #define ERROR_INVALID_BLOCK_LENGTH       1106L
  2419.  
  2420. //
  2421. // MessageId: ERROR_DEVICE_NOT_PARTITIONED
  2422. //
  2423. // MessageText:
  2424. //
  2425. //  Tape partition information could not be found when loading a tape.
  2426. //
  2427. #define ERROR_DEVICE_NOT_PARTITIONED     1107L
  2428.  
  2429. //
  2430. // MessageId: ERROR_UNABLE_TO_LOCK_MEDIA
  2431. //
  2432. // MessageText:
  2433. //
  2434. //  Unable to lock the media eject mechanism.
  2435. //
  2436. #define ERROR_UNABLE_TO_LOCK_MEDIA       1108L
  2437.  
  2438. //
  2439. // MessageId: ERROR_UNABLE_TO_UNLOAD_MEDIA
  2440. //
  2441. // MessageText:
  2442. //
  2443. //  Unable to unload the media.
  2444. //
  2445. #define ERROR_UNABLE_TO_UNLOAD_MEDIA     1109L
  2446.  
  2447. //
  2448. // MessageId: ERROR_MEDIA_CHANGED
  2449. //
  2450. // MessageText:
  2451. //
  2452. //  Media in drive may have changed.
  2453. //
  2454. #define ERROR_MEDIA_CHANGED              1110L
  2455.  
  2456. //
  2457. // MessageId: ERROR_BUS_RESET
  2458. //
  2459. // MessageText:
  2460. //
  2461. //  The I/O bus was reset.
  2462. //
  2463. #define ERROR_BUS_RESET                  1111L
  2464.  
  2465. //
  2466. // MessageId: ERROR_NO_MEDIA_IN_DRIVE
  2467. //
  2468. // MessageText:
  2469. //
  2470. //  No media in drive.
  2471. //
  2472. #define ERROR_NO_MEDIA_IN_DRIVE          1112L
  2473.  
  2474. //
  2475. // MessageId: ERROR_NO_UNICODE_TRANSLATION
  2476. //
  2477. // MessageText:
  2478. //
  2479. //  No mapping for the Unicode character exists in the target multi-byte code page.
  2480. //
  2481. #define ERROR_NO_UNICODE_TRANSLATION     1113L
  2482.  
  2483. //
  2484. // MessageId: ERROR_DLL_INIT_FAILED
  2485. //
  2486. // MessageText:
  2487. //
  2488. //  A dynamic link library (DLL) initialization routine failed.
  2489. //
  2490. #define ERROR_DLL_INIT_FAILED            1114L
  2491.  
  2492. //
  2493. // MessageId: ERROR_SHUTDOWN_IN_PROGRESS
  2494. //
  2495. // MessageText:
  2496. //
  2497. //  A system shutdown is in progress.
  2498. //
  2499. #define ERROR_SHUTDOWN_IN_PROGRESS       1115L
  2500.  
  2501. //
  2502. // MessageId: ERROR_NO_SHUTDOWN_IN_PROGRESS
  2503. //
  2504. // MessageText:
  2505. //
  2506. //  Unable to abort the system shutdown because no shutdown was in progress.
  2507. //
  2508. #define ERROR_NO_SHUTDOWN_IN_PROGRESS    1116L
  2509.  
  2510. //
  2511. // MessageId: ERROR_IO_DEVICE
  2512. //
  2513. // MessageText:
  2514. //
  2515. //  The request could not be performed because of an I/O device error.
  2516. //
  2517. #define ERROR_IO_DEVICE                  1117L
  2518.  
  2519. //
  2520. // MessageId: ERROR_SERIAL_NO_DEVICE
  2521. //
  2522. // MessageText:
  2523. //
  2524. //  No serial device was successfully initialized.  The serial driver will unload.
  2525. //
  2526. #define ERROR_SERIAL_NO_DEVICE           1118L
  2527.  
  2528. //
  2529. // MessageId: ERROR_IRQ_BUSY
  2530. //
  2531. // MessageText:
  2532. //
  2533. //  Unable to open a device that was sharing an interrupt request (IRQ)
  2534. //  with other devices. At least one other device that uses that IRQ
  2535. //  was already opened.
  2536. //
  2537. #define ERROR_IRQ_BUSY                   1119L
  2538.  
  2539. //
  2540. // MessageId: ERROR_MORE_WRITES
  2541. //
  2542. // MessageText:
  2543. //
  2544. //  A serial I/O operation was completed by another write to the serial port.
  2545. //  (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
  2546. //
  2547. #define ERROR_MORE_WRITES                1120L
  2548.  
  2549. //
  2550. // MessageId: ERROR_COUNTER_TIMEOUT
  2551. //
  2552. // MessageText:
  2553. //
  2554. //  A serial I/O operation completed because the time-out period expired.
  2555. //  (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
  2556. //
  2557. #define ERROR_COUNTER_TIMEOUT            1121L
  2558.  
  2559. //
  2560. // MessageId: ERROR_FLOPPY_ID_MARK_NOT_FOUND
  2561. //
  2562. // MessageText:
  2563. //
  2564. //  No ID address mark was found on the floppy disk.
  2565. //
  2566. #define ERROR_FLOPPY_ID_MARK_NOT_FOUND   1122L
  2567.  
  2568. //
  2569. // MessageId: ERROR_FLOPPY_WRONG_CYLINDER
  2570. //
  2571. // MessageText:
  2572. //
  2573. //  Mismatch between the floppy disk sector ID field and the floppy disk
  2574. //  controller track address.
  2575. //
  2576. #define ERROR_FLOPPY_WRONG_CYLINDER      1123L
  2577.  
  2578. //
  2579. // MessageId: ERROR_FLOPPY_UNKNOWN_ERROR
  2580. //
  2581. // MessageText:
  2582. //
  2583. //  The floppy disk controller reported an error that is not recognized
  2584. //  by the floppy disk driver.
  2585. //
  2586. #define ERROR_FLOPPY_UNKNOWN_ERROR       1124L
  2587.  
  2588. //
  2589. // MessageId: ERROR_FLOPPY_BAD_REGISTERS
  2590. //
  2591. // MessageText:
  2592. //
  2593. //  The floppy disk controller returned inconsistent results in its registers.
  2594. //
  2595. #define ERROR_FLOPPY_BAD_REGISTERS       1125L
  2596.  
  2597. //
  2598. // MessageId: ERROR_DISK_RECALIBRATE_FAILED
  2599. //
  2600. // MessageText:
  2601. //
  2602. //  While accessing the hard disk, a recalibrate operation failed, even after retries.
  2603. //
  2604. #define ERROR_DISK_RECALIBRATE_FAILED    1126L
  2605.  
  2606. //
  2607. // MessageId: ERROR_DISK_OPERATION_FAILED
  2608. //
  2609. // MessageText:
  2610. //
  2611. //  While accessing the hard disk, a disk operation failed even after retries.
  2612. //
  2613. #define ERROR_DISK_OPERATION_FAILED      1127L
  2614.  
  2615. //
  2616. // MessageId: ERROR_DISK_RESET_FAILED
  2617. //
  2618. // MessageText:
  2619. //
  2620. //  While accessing the hard disk, a disk controller reset was needed, but
  2621. //  even that failed.
  2622. //
  2623. #define ERROR_DISK_RESET_FAILED          1128L
  2624.  
  2625. //
  2626. // MessageId: ERROR_EOM_OVERFLOW
  2627. //
  2628. // MessageText:
  2629. //
  2630. //  Physical end of tape encountered.
  2631. //
  2632. #define ERROR_EOM_OVERFLOW               1129L
  2633.  
  2634. //
  2635. // MessageId: ERROR_NOT_ENOUGH_SERVER_MEMORY
  2636. //
  2637. // MessageText:
  2638. //
  2639. //  Not enough server storage is available to process this command.
  2640. //
  2641. #define ERROR_NOT_ENOUGH_SERVER_MEMORY   1130L
  2642.  
  2643. //
  2644. // MessageId: ERROR_POSSIBLE_DEADLOCK
  2645. //
  2646. // MessageText:
  2647. //
  2648. //  A potential deadlock condition has been detected.
  2649. //
  2650. #define ERROR_POSSIBLE_DEADLOCK          1131L
  2651.  
  2652. //
  2653. // MessageId: ERROR_MAPPED_ALIGNMENT
  2654. //
  2655. // MessageText:
  2656. //
  2657. //  The base address or the file offset specified does not have the proper
  2658. //  alignment.
  2659. //
  2660. #define ERROR_MAPPED_ALIGNMENT           1132L
  2661.  
  2662. //
  2663. // MessageId: ERROR_SET_POWER_STATE_VETOED
  2664. //
  2665. // MessageText:
  2666. //
  2667. //  An attempt to change the system power state was vetoed by another
  2668. //  application or driver.
  2669. //
  2670. #define ERROR_SET_POWER_STATE_VETOED     1140L
  2671.  
  2672. //
  2673. // MessageId: ERROR_SET_POWER_STATE_FAILED
  2674. //
  2675. // MessageText:
  2676. //
  2677. //  The system BIOS failed an attempt to change the system power state.
  2678. //
  2679. #define ERROR_SET_POWER_STATE_FAILED     1141L
  2680.  
  2681. //
  2682. // MessageId: ERROR_OLD_WIN_VERSION
  2683. //
  2684. // MessageText:
  2685. //
  2686. //  The specified program requires a newer version of Windows.
  2687. //
  2688. #define ERROR_OLD_WIN_VERSION            1150L
  2689.  
  2690. //
  2691. // MessageId: ERROR_APP_WRONG_OS
  2692. //
  2693. // MessageText:
  2694. //
  2695. //  The specified program is not a Windows or MS-DOS program.
  2696. //
  2697. #define ERROR_APP_WRONG_OS               1151L
  2698.  
  2699. //
  2700. // MessageId: ERROR_SINGLE_INSTANCE_APP
  2701. //
  2702. // MessageText:
  2703. //
  2704. //  Cannot start more than one instance of the specified program.
  2705. //
  2706. #define ERROR_SINGLE_INSTANCE_APP        1152L
  2707.  
  2708. //
  2709. // MessageId: ERROR_RMODE_APP
  2710. //
  2711. // MessageText:
  2712. //
  2713. //  The specified program was written for an older version of Windows.
  2714. //
  2715. #define ERROR_RMODE_APP                  1153L
  2716.  
  2717. //
  2718. // MessageId: ERROR_INVALID_DLL
  2719. //
  2720. // MessageText:
  2721. //
  2722. //  One of the library files needed to run this application is damaged.
  2723. //
  2724. #define ERROR_INVALID_DLL                1154L
  2725.  
  2726. //
  2727. // MessageId: ERROR_NO_ASSOCIATION
  2728. //
  2729. // MessageText:
  2730. //
  2731. //  No application is associated with the specified file for this operation.
  2732. //
  2733. #define ERROR_NO_ASSOCIATION             1155L
  2734.  
  2735. //
  2736. // MessageId: ERROR_DDE_FAIL
  2737. //
  2738. // MessageText:
  2739. //
  2740. //  An error occurred in sending the command to the application.
  2741. //
  2742. #define ERROR_DDE_FAIL                   1156L
  2743.  
  2744. //
  2745. // MessageId: ERROR_DLL_NOT_FOUND
  2746. //
  2747. // MessageText:
  2748. //
  2749. //  One of the library files needed to run this application cannot be found.
  2750. //
  2751. #define ERROR_DLL_NOT_FOUND              1157L
  2752.  
  2753.  
  2754.  
  2755.  
  2756. ///////////////////////////
  2757. //                       //
  2758. // Winnet32 Status Codes //
  2759. //                       //
  2760. ///////////////////////////
  2761.  
  2762.  
  2763. //
  2764. // MessageId: ERROR_BAD_USERNAME
  2765. //
  2766. // MessageText:
  2767. //
  2768. //  The specified username is invalid.
  2769. //
  2770. #define ERROR_BAD_USERNAME               2202L
  2771.  
  2772. //
  2773. // MessageId: ERROR_NOT_CONNECTED
  2774. //
  2775. // MessageText:
  2776. //
  2777. //  This network connection does not exist.
  2778. //
  2779. #define ERROR_NOT_CONNECTED              2250L
  2780.  
  2781. //
  2782. // MessageId: ERROR_OPEN_FILES
  2783. //
  2784. // MessageText:
  2785. //
  2786. //  This network connection has files open or requests pending.
  2787. //
  2788. #define ERROR_OPEN_FILES                 2401L
  2789.  
  2790. //
  2791. // MessageId: ERROR_ACTIVE_CONNECTIONS
  2792. //
  2793. // MessageText:
  2794. //
  2795. //  Active connections still exist.
  2796. //
  2797. #define ERROR_ACTIVE_CONNECTIONS         2402L
  2798.  
  2799. //
  2800. // MessageId: ERROR_DEVICE_IN_USE
  2801. //
  2802. // MessageText:
  2803. //
  2804. //  The device is in use by an active process and cannot be disconnected.
  2805. //
  2806. #define ERROR_DEVICE_IN_USE              2404L
  2807.  
  2808. //
  2809. // MessageId: ERROR_BAD_DEVICE
  2810. //
  2811. // MessageText:
  2812. //
  2813. //  The specified device name is invalid.
  2814. //
  2815. #define ERROR_BAD_DEVICE                 1200L
  2816.  
  2817. //
  2818. // MessageId: ERROR_CONNECTION_UNAVAIL
  2819. //
  2820. // MessageText:
  2821. //
  2822. //  The device is not currently connected but it is a remembered connection.
  2823. //
  2824. #define ERROR_CONNECTION_UNAVAIL         1201L
  2825.  
  2826. //
  2827. // MessageId: ERROR_DEVICE_ALREADY_REMEMBERED
  2828. //
  2829. // MessageText:
  2830. //
  2831. //  An attempt was made to remember a device that had previously been remembered.
  2832. //
  2833. #define ERROR_DEVICE_ALREADY_REMEMBERED  1202L
  2834.  
  2835. //
  2836. // MessageId: ERROR_NO_NET_OR_BAD_PATH
  2837. //
  2838. // MessageText:
  2839. //
  2840. //  No network provider accepted the given network path.
  2841. //
  2842. #define ERROR_NO_NET_OR_BAD_PATH         1203L
  2843.  
  2844. //
  2845. // MessageId: ERROR_BAD_PROVIDER
  2846. //
  2847. // MessageText:
  2848. //
  2849. //  The specified network provider name is invalid.
  2850. //
  2851. #define ERROR_BAD_PROVIDER               1204L
  2852.  
  2853. //
  2854. // MessageId: ERROR_CANNOT_OPEN_PROFILE
  2855. //
  2856. // MessageText:
  2857. //
  2858. //  Unable to open the network connection profile.
  2859. //
  2860. #define ERROR_CANNOT_OPEN_PROFILE        1205L
  2861.  
  2862. //
  2863. // MessageId: ERROR_BAD_PROFILE
  2864. //
  2865. // MessageText:
  2866. //
  2867. //  The network connection profile is corrupt.
  2868. //
  2869. #define ERROR_BAD_PROFILE                1206L
  2870.  
  2871. //
  2872. // MessageId: ERROR_NOT_CONTAINER
  2873. //
  2874. // MessageText:
  2875. //
  2876. //  Cannot enumerate a non-container.
  2877. //
  2878. #define ERROR_NOT_CONTAINER              1207L
  2879.  
  2880. //
  2881. // MessageId: ERROR_EXTENDED_ERROR
  2882. //
  2883. // MessageText:
  2884. //
  2885. //  An extended error has occurred.
  2886. //
  2887. #define ERROR_EXTENDED_ERROR             1208L
  2888.  
  2889. //
  2890. // MessageId: ERROR_INVALID_GROUPNAME
  2891. //
  2892. // MessageText:
  2893. //
  2894. //  The format of the specified group name is invalid.
  2895. //
  2896. #define ERROR_INVALID_GROUPNAME          1209L
  2897.  
  2898. //
  2899. // MessageId: ERROR_INVALID_COMPUTERNAME
  2900. //
  2901. // MessageText:
  2902. //
  2903. //  The format of the specified computer name is invalid.
  2904. //
  2905. #define ERROR_INVALID_COMPUTERNAME       1210L
  2906.  
  2907. //
  2908. // MessageId: ERROR_INVALID_EVENTNAME
  2909. //
  2910. // MessageText:
  2911. //
  2912. //  The format of the specified event name is invalid.
  2913. //
  2914. #define ERROR_INVALID_EVENTNAME          1211L
  2915.  
  2916. //
  2917. // MessageId: ERROR_INVALID_DOMAINNAME
  2918. //
  2919. // MessageText:
  2920. //
  2921. //  The format of the specified domain name is invalid.
  2922. //
  2923. #define ERROR_INVALID_DOMAINNAME         1212L
  2924.  
  2925. //
  2926. // MessageId: ERROR_INVALID_SERVICENAME
  2927. //
  2928. // MessageText:
  2929. //
  2930. //  The format of the specified service name is invalid.
  2931. //
  2932. #define ERROR_INVALID_SERVICENAME        1213L
  2933.  
  2934. //
  2935. // MessageId: ERROR_INVALID_NETNAME
  2936. //
  2937. // MessageText:
  2938. //
  2939. //  The format of the specified network name is invalid.
  2940. //
  2941. #define ERROR_INVALID_NETNAME            1214L
  2942.  
  2943. //
  2944. // MessageId: ERROR_INVALID_SHARENAME
  2945. //
  2946. // MessageText:
  2947. //
  2948. //  The format of the specified share name is invalid.
  2949. //
  2950. #define ERROR_INVALID_SHARENAME          1215L
  2951.  
  2952. //
  2953. // MessageId: ERROR_INVALID_PASSWORDNAME
  2954. //
  2955. // MessageText:
  2956. //
  2957. //  The format of the specified password is invalid.
  2958. //
  2959. #define ERROR_INVALID_PASSWORDNAME       1216L
  2960.  
  2961. //
  2962. // MessageId: ERROR_INVALID_MESSAGENAME
  2963. //
  2964. // MessageText:
  2965. //
  2966. //  The format of the specified message name is invalid.
  2967. //
  2968. #define ERROR_INVALID_MESSAGENAME        1217L
  2969.  
  2970. //
  2971. // MessageId: ERROR_INVALID_MESSAGEDEST
  2972. //
  2973. // MessageText:
  2974. //
  2975. //  The format of the specified message destination is invalid.
  2976. //
  2977. #define ERROR_INVALID_MESSAGEDEST        1218L
  2978.  
  2979. //
  2980. // MessageId: ERROR_SESSION_CREDENTIAL_CONFLICT
  2981. //
  2982. // MessageText:
  2983. //
  2984. //  The credentials supplied conflict with an existing set of credentials.
  2985. //
  2986. #define ERROR_SESSION_CREDENTIAL_CONFLICT 1219L
  2987.  
  2988. //
  2989. // MessageId: ERROR_REMOTE_SESSION_LIMIT_EXCEEDED
  2990. //
  2991. // MessageText:
  2992. //
  2993. //  An attempt was made to establish a session to a network server, but there
  2994. //  are already too many sessions established to that server.
  2995. //
  2996. #define ERROR_REMOTE_SESSION_LIMIT_EXCEEDED 1220L
  2997.  
  2998. //
  2999. // MessageId: ERROR_DUP_DOMAINNAME
  3000. //
  3001. // MessageText:
  3002. //
  3003. //  The workgroup or domain name is already in use by another computer on the
  3004. //  network.
  3005. //
  3006. #define ERROR_DUP_DOMAINNAME             1221L
  3007.  
  3008. //
  3009. // MessageId: ERROR_NO_NETWORK
  3010. //
  3011. // MessageText:
  3012. //
  3013. //  The network is not present or not started.
  3014. //
  3015. #define ERROR_NO_NETWORK                 1222L
  3016.  
  3017. //
  3018. // MessageId: ERROR_CANCELLED
  3019. //
  3020. // MessageText:
  3021. //
  3022. //  The operation was cancelled by the user.
  3023. //
  3024. #define ERROR_CANCELLED                  1223L
  3025.  
  3026. //
  3027. // MessageId: ERROR_USER_MAPPED_FILE
  3028. //
  3029. // MessageText:
  3030. //
  3031. //  The requested operation cannot be performed on a file with a user mapped section open.
  3032. //
  3033. #define ERROR_USER_MAPPED_FILE           1224L
  3034.  
  3035. //
  3036. // MessageId: ERROR_CONNECTION_REFUSED
  3037. //
  3038. // MessageText:
  3039. //
  3040. //  The remote system refused the network connection.
  3041. //
  3042. #define ERROR_CONNECTION_REFUSED         1225L
  3043.  
  3044. //
  3045. // MessageId: ERROR_GRACEFUL_DISCONNECT
  3046. //
  3047. // MessageText:
  3048. //
  3049. //  The network connection was gracefully closed.
  3050. //
  3051. #define ERROR_GRACEFUL_DISCONNECT        1226L
  3052.  
  3053. //
  3054. // MessageId: ERROR_ADDRESS_ALREADY_ASSOCIATED
  3055. //
  3056. // MessageText:
  3057. //
  3058. //  The network transport endpoint already has an address associated with it.
  3059. //
  3060. #define ERROR_ADDRESS_ALREADY_ASSOCIATED 1227L
  3061.  
  3062. //
  3063. // MessageId: ERROR_ADDRESS_NOT_ASSOCIATED
  3064. //
  3065. // MessageText:
  3066. //
  3067. //  An address has not yet been associated with the network endpoint.
  3068. //
  3069. #define ERROR_ADDRESS_NOT_ASSOCIATED     1228L
  3070.  
  3071. //
  3072. // MessageId: ERROR_CONNECTION_INVALID
  3073. //
  3074. // MessageText:
  3075. //
  3076. //  An operation was attempted on a non-existent network connection.
  3077. //
  3078. #define ERROR_CONNECTION_INVALID         1229L
  3079.  
  3080. //
  3081. // MessageId: ERROR_CONNECTION_ACTIVE
  3082. //
  3083. // MessageText:
  3084. //
  3085. //  An invalid operation was attempted on an active network connection.
  3086. //
  3087. #define ERROR_CONNECTION_ACTIVE          1230L
  3088.  
  3089. //
  3090. // MessageId: ERROR_NETWORK_UNREACHABLE
  3091. //
  3092. // MessageText:
  3093. //
  3094. //  The remote network is not reachable by the transport.
  3095. //
  3096. #define ERROR_NETWORK_UNREACHABLE        1231L
  3097.  
  3098. //
  3099. // MessageId: ERROR_HOST_UNREACHABLE
  3100. //
  3101. // MessageText:
  3102. //
  3103. //  The remote system is not reachable by the transport.
  3104. //
  3105. #define ERROR_HOST_UNREACHABLE           1232L
  3106.  
  3107. //
  3108. // MessageId: ERROR_PROTOCOL_UNREACHABLE
  3109. //
  3110. // MessageText:
  3111. //
  3112. //  The remote system does not support the transport protocol.
  3113. //
  3114. #define ERROR_PROTOCOL_UNREACHABLE       1233L
  3115.  
  3116. //
  3117. // MessageId: ERROR_PORT_UNREACHABLE
  3118. //
  3119. // MessageText:
  3120. //
  3121. //  No service is operating at the destination network endpoint
  3122. //  on the remote system.
  3123. //
  3124. #define ERROR_PORT_UNREACHABLE           1234L
  3125.  
  3126. //
  3127. // MessageId: ERROR_REQUEST_ABORTED
  3128. //
  3129. // MessageText:
  3130. //
  3131. //  The request was aborted.
  3132. //
  3133. #define ERROR_REQUEST_ABORTED            1235L
  3134.  
  3135. //
  3136. // MessageId: ERROR_CONNECTION_ABORTED
  3137. //
  3138. // MessageText:
  3139. //
  3140. //  The network connection was aborted by the local system.
  3141. //
  3142. #define ERROR_CONNECTION_ABORTED         1236L
  3143.  
  3144. //
  3145. // MessageId: ERROR_RETRY
  3146. //
  3147. // MessageText:
  3148. //
  3149. //  The operation could not be completed.  A retry should be performed.
  3150. //
  3151. #define ERROR_RETRY                      1237L
  3152.  
  3153. //
  3154. // MessageId: ERROR_CONNECTION_COUNT_LIMIT
  3155. //
  3156. // MessageText:
  3157. //
  3158. //  A connection to the server could not be made because the limit on the number of
  3159. //  concurrent connections for this account has been reached.
  3160. //
  3161. #define ERROR_CONNECTION_COUNT_LIMIT     1238L
  3162.  
  3163. //
  3164. // MessageId: ERROR_LOGIN_TIME_RESTRICTION
  3165. //
  3166. // MessageText:
  3167. //
  3168. //  Attempting to login during an unauthorized time of day for this account.
  3169. //
  3170. #define ERROR_LOGIN_TIME_RESTRICTION     1239L
  3171.  
  3172. //
  3173. // MessageId: ERROR_LOGIN_WKSTA_RESTRICTION
  3174. //
  3175. // MessageText:
  3176. //
  3177. //  The account is not authorized to login from this station.
  3178. //
  3179. #define ERROR_LOGIN_WKSTA_RESTRICTION    1240L
  3180.  
  3181. //
  3182. // MessageId: ERROR_INCORRECT_ADDRESS
  3183. //
  3184. // MessageText:
  3185. //
  3186. //  The network address could not be used for the operation requested.
  3187. //
  3188. #define ERROR_INCORRECT_ADDRESS          1241L
  3189.  
  3190. //
  3191. // MessageId: ERROR_ALREADY_REGISTERED
  3192. //
  3193. // MessageText:
  3194. //
  3195. //  The service is already registered.
  3196. //
  3197. #define ERROR_ALREADY_REGISTERED         1242L
  3198.  
  3199. //
  3200. // MessageId: ERROR_SERVICE_NOT_FOUND
  3201. //
  3202. // MessageText:
  3203. //
  3204. //  The specified service does not exist.
  3205. //
  3206. #define ERROR_SERVICE_NOT_FOUND          1243L
  3207.  
  3208. //
  3209. // MessageId: ERROR_NOT_AUTHENTICATED
  3210. //
  3211. // MessageText:
  3212. //
  3213. //  The operation being requested was not performed because the user
  3214. //  has not been authenticated.
  3215. //
  3216. #define ERROR_NOT_AUTHENTICATED          1244L
  3217.  
  3218. //
  3219. // MessageId: ERROR_NOT_LOGGED_ON
  3220. //
  3221. // MessageText:
  3222. //
  3223. //  The operation being requested was not performed because the user
  3224. //  has not logged on to the network.
  3225. //  The specified service does not exist.
  3226. //
  3227. #define ERROR_NOT_LOGGED_ON              1245L
  3228.  
  3229. //
  3230. // MessageId: ERROR_CONTINUE
  3231. //
  3232. // MessageText:
  3233. //
  3234. //  Return that wants caller to continue with work in progress.
  3235. //
  3236. #define ERROR_CONTINUE                   1246L
  3237.  
  3238. //
  3239. // MessageId: ERROR_ALREADY_INITIALIZED
  3240. //
  3241. // MessageText:
  3242. //
  3243. //  An attempt was made to perform an initialization operation when
  3244. //  initialization has already been completed.
  3245. //
  3246. #define ERROR_ALREADY_INITIALIZED        1247L
  3247.  
  3248. //
  3249. // MessageId: ERROR_NO_MORE_DEVICES
  3250. //
  3251. // MessageText:
  3252. //
  3253. //  No more local devices.
  3254. //
  3255. #define ERROR_NO_MORE_DEVICES            1248L
  3256.  
  3257.  
  3258.  
  3259.  
  3260. ///////////////////////////
  3261. //                       //
  3262. // Security Status Codes //
  3263. //                       //
  3264. ///////////////////////////
  3265.  
  3266.  
  3267. //
  3268. // MessageId: ERROR_NOT_ALL_ASSIGNED
  3269. //
  3270. // MessageText:
  3271. //
  3272. //  Not all privileges referenced are assigned to the caller.
  3273. //
  3274. #define ERROR_NOT_ALL_ASSIGNED           1300L
  3275.  
  3276. //
  3277. // MessageId: ERROR_SOME_NOT_MAPPED
  3278. //
  3279. // MessageText:
  3280. //
  3281. //  Some mapping between account names and security IDs was not done.
  3282. //
  3283. #define ERROR_SOME_NOT_MAPPED            1301L
  3284.  
  3285. //
  3286. // MessageId: ERROR_NO_QUOTAS_FOR_ACCOUNT
  3287. //
  3288. // MessageText:
  3289. //
  3290. //  No system quota limits are specifically set for this account.
  3291. //
  3292. #define ERROR_NO_QUOTAS_FOR_ACCOUNT      1302L
  3293.  
  3294. //
  3295. // MessageId: ERROR_LOCAL_USER_SESSION_KEY
  3296. //
  3297. // MessageText:
  3298. //
  3299. //  No encryption key is available.  A well-known encryption key was returned.
  3300. //
  3301. #define ERROR_LOCAL_USER_SESSION_KEY     1303L
  3302.  
  3303. //
  3304. // MessageId: ERROR_NULL_LM_PASSWORD
  3305. //
  3306. // MessageText:
  3307. //
  3308. //  The NT password is too complex to be converted to a LAN Manager
  3309. //  password.  The LAN Manager password returned is a NULL string.
  3310. //
  3311. #define ERROR_NULL_LM_PASSWORD           1304L
  3312.  
  3313. //
  3314. // MessageId: ERROR_UNKNOWN_REVISION
  3315. //
  3316. // MessageText:
  3317. //
  3318. //  The revision level is unknown.
  3319. //
  3320. #define ERROR_UNKNOWN_REVISION           1305L
  3321.  
  3322. //
  3323. // MessageId: ERROR_REVISION_MISMATCH
  3324. //
  3325. // MessageText:
  3326. //
  3327. //  Indicates two revision levels are incompatible.
  3328. //
  3329. #define ERROR_REVISION_MISMATCH          1306L
  3330.  
  3331. //
  3332. // MessageId: ERROR_INVALID_OWNER
  3333. //
  3334. // MessageText:
  3335. //
  3336. //  This security ID may not be assigned as the owner of this object.
  3337. //
  3338. #define ERROR_INVALID_OWNER              1307L
  3339.  
  3340. //
  3341. // MessageId: ERROR_INVALID_PRIMARY_GROUP
  3342. //
  3343. // MessageText:
  3344. //
  3345. //  This security ID may not be assigned as the primary group of an object.
  3346. //
  3347. #define ERROR_INVALID_PRIMARY_GROUP      1308L
  3348.  
  3349. //
  3350. // MessageId: ERROR_NO_IMPERSONATION_TOKEN
  3351. //
  3352. // MessageText:
  3353. //
  3354. //  An attempt has been made to operate on an impersonation token
  3355. //  by a thread that is not currently impersonating a client.
  3356. //
  3357. #define ERROR_NO_IMPERSONATION_TOKEN     1309L
  3358.  
  3359. //
  3360. // MessageId: ERROR_CANT_DISABLE_MANDATORY
  3361. //
  3362. // MessageText:
  3363. //
  3364. //  The group may not be disabled.
  3365. //
  3366. #define ERROR_CANT_DISABLE_MANDATORY     1310L
  3367.  
  3368. //
  3369. // MessageId: ERROR_NO_LOGON_SERVERS
  3370. //
  3371. // MessageText:
  3372. //
  3373. //  There are currently no logon servers available to service the logon
  3374. //  request.
  3375. //
  3376. #define ERROR_NO_LOGON_SERVERS           1311L
  3377.  
  3378. //
  3379. // MessageId: ERROR_NO_SUCH_LOGON_SESSION
  3380. //
  3381. // MessageText:
  3382. //
  3383. //   A specified logon session does not exist.  It may already have
  3384. //   been terminated.
  3385. //
  3386. #define ERROR_NO_SUCH_LOGON_SESSION      1312L
  3387.  
  3388. //
  3389. // MessageId: ERROR_NO_SUCH_PRIVILEGE
  3390. //
  3391. // MessageText:
  3392. //
  3393. //   A specified privilege does not exist.
  3394. //
  3395. #define ERROR_NO_SUCH_PRIVILEGE          1313L
  3396.  
  3397. //
  3398. // MessageId: ERROR_PRIVILEGE_NOT_HELD
  3399. //
  3400. // MessageText:
  3401. //
  3402. //   A required privilege is not held by the client.
  3403. //
  3404. #define ERROR_PRIVILEGE_NOT_HELD         1314L
  3405.  
  3406. //
  3407. // MessageId: ERROR_INVALID_ACCOUNT_NAME
  3408. //
  3409. // MessageText:
  3410. //
  3411. //  The name provided is not a properly formed account name.
  3412. //
  3413. #define ERROR_INVALID_ACCOUNT_NAME       1315L
  3414.  
  3415. //
  3416. // MessageId: ERROR_USER_EXISTS
  3417. //
  3418. // MessageText:
  3419. //
  3420. //  The specified user already exists.
  3421. //
  3422. #define ERROR_USER_EXISTS                1316L
  3423.  
  3424. //
  3425. // MessageId: ERROR_NO_SUCH_USER
  3426. //
  3427. // MessageText:
  3428. //
  3429. //  The specified user does not exist.
  3430. //
  3431. #define ERROR_NO_SUCH_USER               1317L
  3432.  
  3433. //
  3434. // MessageId: ERROR_GROUP_EXISTS
  3435. //
  3436. // MessageText:
  3437. //
  3438. //  The specified group already exists.
  3439. //
  3440. #define ERROR_GROUP_EXISTS               1318L
  3441.  
  3442. //
  3443. // MessageId: ERROR_NO_SUCH_GROUP
  3444. //
  3445. // MessageText:
  3446. //
  3447. //  The specified group does not exist.
  3448. //
  3449. #define ERROR_NO_SUCH_GROUP              1319L
  3450.  
  3451. //
  3452. // MessageId: ERROR_MEMBER_IN_GROUP
  3453. //
  3454. // MessageText:
  3455. //
  3456. //  Either the specified user account is already a member of the specified
  3457. //  group, or the specified group cannot be deleted because it contains
  3458. //  a member.
  3459. //
  3460. #define ERROR_MEMBER_IN_GROUP            1320L
  3461.  
  3462. //
  3463. // MessageId: ERROR_MEMBER_NOT_IN_GROUP
  3464. //
  3465. // MessageText:
  3466. //
  3467. //  The specified user account is not a member of the specified group account.
  3468. //
  3469. #define ERROR_MEMBER_NOT_IN_GROUP        1321L
  3470.  
  3471. //
  3472. // MessageId: ERROR_LAST_ADMIN
  3473. //
  3474. // MessageText:
  3475. //
  3476. //  The last remaining administration account cannot be disabled
  3477. //  or deleted.
  3478. //
  3479. #define ERROR_LAST_ADMIN                 1322L
  3480.  
  3481. //
  3482. // MessageId: ERROR_WRONG_PASSWORD
  3483. //
  3484. // MessageText:
  3485. //
  3486. //  Unable to update the password.  The value provided as the current
  3487. //  password is incorrect.
  3488. //
  3489. #define ERROR_WRONG_PASSWORD             1323L
  3490.  
  3491. //
  3492. // MessageId: ERROR_ILL_FORMED_PASSWORD
  3493. //
  3494. // MessageText:
  3495. //
  3496. //  Unable to update the password.  The value provided for the new password
  3497. //  contains values that are not allowed in passwords.
  3498. //
  3499. #define ERROR_ILL_FORMED_PASSWORD        1324L
  3500.  
  3501. //
  3502. // MessageId: ERROR_PASSWORD_RESTRICTION
  3503. //
  3504. // MessageText:
  3505. //
  3506. //  Unable to update the password because a password update rule has been
  3507. //  violated.
  3508. //
  3509. #define ERROR_PASSWORD_RESTRICTION       1325L
  3510.  
  3511. //
  3512. // MessageId: ERROR_LOGON_FAILURE
  3513. //
  3514. // MessageText:
  3515. //
  3516. //  Logon failure: unknown user name or bad password.
  3517. //
  3518. #define ERROR_LOGON_FAILURE              1326L
  3519.  
  3520. //
  3521. // MessageId: ERROR_ACCOUNT_RESTRICTION
  3522. //
  3523. // MessageText:
  3524. //
  3525. //  Logon failure: user account restriction.
  3526. //
  3527. #define ERROR_ACCOUNT_RESTRICTION        1327L
  3528.  
  3529. //
  3530. // MessageId: ERROR_INVALID_LOGON_HOURS
  3531. //
  3532. // MessageText:
  3533. //
  3534. //  Logon failure: account logon time restriction violation.
  3535. //
  3536. #define ERROR_INVALID_LOGON_HOURS        1328L
  3537.  
  3538. //
  3539. // MessageId: ERROR_INVALID_WORKSTATION
  3540. //
  3541. // MessageText:
  3542. //
  3543. //  Logon failure: user not allowed to log on to this computer.
  3544. //
  3545. #define ERROR_INVALID_WORKSTATION        1329L
  3546.  
  3547. //
  3548. // MessageId: ERROR_PASSWORD_EXPIRED
  3549. //
  3550. // MessageText:
  3551. //
  3552. //  Logon failure: the specified account password has expired.
  3553. //
  3554. #define ERROR_PASSWORD_EXPIRED           1330L
  3555.  
  3556. //
  3557. // MessageId: ERROR_ACCOUNT_DISABLED
  3558. //
  3559. // MessageText:
  3560. //
  3561. //  Logon failure: account currently disabled.
  3562. //
  3563. #define ERROR_ACCOUNT_DISABLED           1331L
  3564.  
  3565. //
  3566. // MessageId: ERROR_NONE_MAPPED
  3567. //
  3568. // MessageText:
  3569. //
  3570. //  No mapping between account names and security IDs was done.
  3571. //
  3572. #define ERROR_NONE_MAPPED                1332L
  3573.  
  3574. //
  3575. // MessageId: ERROR_TOO_MANY_LUIDS_REQUESTED
  3576. //
  3577. // MessageText:
  3578. //
  3579. //  Too many local user identifiers (LUIDs) were requested at one time.
  3580. //
  3581. #define ERROR_TOO_MANY_LUIDS_REQUESTED   1333L
  3582.  
  3583. //
  3584. // MessageId: ERROR_LUIDS_EXHAUSTED
  3585. //
  3586. // MessageText:
  3587. //
  3588. //  No more local user identifiers (LUIDs) are available.
  3589. //
  3590. #define ERROR_LUIDS_EXHAUSTED            1334L
  3591.  
  3592. //
  3593. // MessageId: ERROR_INVALID_SUB_AUTHORITY
  3594. //
  3595. // MessageText:
  3596. //
  3597. //  The subauthority part of a security ID is invalid for this particular use.
  3598. //
  3599. #define ERROR_INVALID_SUB_AUTHORITY      1335L
  3600.  
  3601. //
  3602. // MessageId: ERROR_INVALID_ACL
  3603. //
  3604. // MessageText:
  3605. //
  3606. //  The access control list (ACL) structure is invalid.
  3607. //
  3608. #define ERROR_INVALID_ACL                1336L
  3609.  
  3610. //
  3611. // MessageId: ERROR_INVALID_SID
  3612. //
  3613. // MessageText:
  3614. //
  3615. //  The security ID structure is invalid.
  3616. //
  3617. #define ERROR_INVALID_SID                1337L
  3618.  
  3619. //
  3620. // MessageId: ERROR_INVALID_SECURITY_DESCR
  3621. //
  3622. // MessageText:
  3623. //
  3624. //  The security descriptor structure is invalid.
  3625. //
  3626. #define ERROR_INVALID_SECURITY_DESCR     1338L
  3627.  
  3628. //
  3629. // MessageId: ERROR_BAD_INHERITANCE_ACL
  3630. //
  3631. // MessageText:
  3632. //
  3633. //  The inherited access control list (ACL) or access control entry (ACE)
  3634. //  could not be built.
  3635. //
  3636. #define ERROR_BAD_INHERITANCE_ACL        1340L
  3637.  
  3638. //
  3639. // MessageId: ERROR_SERVER_DISABLED
  3640. //
  3641. // MessageText:
  3642. //
  3643. //  The server is currently disabled.
  3644. //
  3645. #define ERROR_SERVER_DISABLED            1341L
  3646.  
  3647. //
  3648. // MessageId: ERROR_SERVER_NOT_DISABLED
  3649. //
  3650. // MessageText:
  3651. //
  3652. //  The server is currently enabled.
  3653. //
  3654. #define ERROR_SERVER_NOT_DISABLED        1342L
  3655.  
  3656. //
  3657. // MessageId: ERROR_INVALID_ID_AUTHORITY
  3658. //
  3659. // MessageText:
  3660. //
  3661. //  The value provided was an invalid value for an identifier authority.
  3662. //
  3663. #define ERROR_INVALID_ID_AUTHORITY       1343L
  3664.  
  3665. //
  3666. // MessageId: ERROR_ALLOTTED_SPACE_EXCEEDED
  3667. //
  3668. // MessageText:
  3669. //
  3670. //  No more memory is available for security information updates.
  3671. //
  3672. #define ERROR_ALLOTTED_SPACE_EXCEEDED    1344L
  3673.  
  3674. //
  3675. // MessageId: ERROR_INVALID_GROUP_ATTRIBUTES
  3676. //
  3677. // MessageText:
  3678. //
  3679. //  The specified attributes are invalid, or incompatible with the
  3680. //  attributes for the group as a whole.
  3681. //
  3682. #define ERROR_INVALID_GROUP_ATTRIBUTES   1345L
  3683.  
  3684. //
  3685. // MessageId: ERROR_BAD_IMPERSONATION_LEVEL
  3686. //
  3687. // MessageText:
  3688. //
  3689. //  Either a required impersonation level was not provided, or the
  3690. //  provided impersonation level is invalid.
  3691. //
  3692. #define ERROR_BAD_IMPERSONATION_LEVEL    1346L
  3693.  
  3694. //
  3695. // MessageId: ERROR_CANT_OPEN_ANONYMOUS
  3696. //
  3697. // MessageText:
  3698. //
  3699. //  Cannot open an anonymous level security token.
  3700. //
  3701. #define ERROR_CANT_OPEN_ANONYMOUS        1347L
  3702.  
  3703. //
  3704. // MessageId: ERROR_BAD_VALIDATION_CLASS
  3705. //
  3706. // MessageText:
  3707. //
  3708. //  The validation information class requested was invalid.
  3709. //
  3710. #define ERROR_BAD_VALIDATION_CLASS       1348L
  3711.  
  3712. //
  3713. // MessageId: ERROR_BAD_TOKEN_TYPE
  3714. //
  3715. // MessageText:
  3716. //
  3717. //  The type of the token is inappropriate for its attempted use.
  3718. //
  3719. #define ERROR_BAD_TOKEN_TYPE             1349L
  3720.  
  3721. //
  3722. // MessageId: ERROR_NO_SECURITY_ON_OBJECT
  3723. //
  3724. // MessageText:
  3725. //
  3726. //  Unable to perform a security operation on an object
  3727. //  which has no associated security.
  3728. //
  3729. #define ERROR_NO_SECURITY_ON_OBJECT      1350L
  3730.  
  3731. //
  3732. // MessageId: ERROR_CANT_ACCESS_DOMAIN_INFO
  3733. //
  3734. // MessageText:
  3735. //
  3736. //  Indicates a Windows NT Server could not be contacted or that
  3737. //  objects within the domain are protected such that necessary
  3738. //  information could not be retrieved.
  3739. //
  3740. #define ERROR_CANT_ACCESS_DOMAIN_INFO    1351L
  3741.  
  3742. //
  3743. // MessageId: ERROR_INVALID_SERVER_STATE
  3744. //
  3745. // MessageText:
  3746. //
  3747. //  The security account manager (SAM) or local security
  3748. //  authority (LSA) server was in the wrong state to perform
  3749. //  the security operation.
  3750. //
  3751. #define ERROR_INVALID_SERVER_STATE       1352L
  3752.  
  3753. //
  3754. // MessageId: ERROR_INVALID_DOMAIN_STATE
  3755. //
  3756. // MessageText:
  3757. //
  3758. //  The domain was in the wrong state to perform the security operation.
  3759. //
  3760. #define ERROR_INVALID_DOMAIN_STATE       1353L
  3761.  
  3762. //
  3763. // MessageId: ERROR_INVALID_DOMAIN_ROLE
  3764. //
  3765. // MessageText:
  3766. //
  3767. //  This operation is only allowed for the Primary Domain Controller of the domain.
  3768. //
  3769. #define ERROR_INVALID_DOMAIN_ROLE        1354L
  3770.  
  3771. //
  3772. // MessageId: ERROR_NO_SUCH_DOMAIN
  3773. //
  3774. // MessageText:
  3775. //
  3776. //  The specified domain did not exist.
  3777. //
  3778. #define ERROR_NO_SUCH_DOMAIN             1355L
  3779.  
  3780. //
  3781. // MessageId: ERROR_DOMAIN_EXISTS
  3782. //
  3783. // MessageText:
  3784. //
  3785. //  The specified domain already exists.
  3786. //
  3787. #define ERROR_DOMAIN_EXISTS              1356L
  3788.  
  3789. //
  3790. // MessageId: ERROR_DOMAIN_LIMIT_EXCEEDED
  3791. //
  3792. // MessageText:
  3793. //
  3794. //  An attempt was made to exceed the limit on the number of domains per server.
  3795. //
  3796. #define ERROR_DOMAIN_LIMIT_EXCEEDED      1357L
  3797.  
  3798. //
  3799. // MessageId: ERROR_INTERNAL_DB_CORRUPTION
  3800. //
  3801. // MessageText:
  3802. //
  3803. //  Unable to complete the requested operation because of either a
  3804. //  catastrophic media failure or a data structure corruption on the disk.
  3805. //
  3806. #define ERROR_INTERNAL_DB_CORRUPTION     1358L
  3807.  
  3808. //
  3809. // MessageId: ERROR_INTERNAL_ERROR
  3810. //
  3811. // MessageText:
  3812. //
  3813. //  The security account database contains an internal inconsistency.
  3814. //
  3815. #define ERROR_INTERNAL_ERROR             1359L
  3816.  
  3817. //
  3818. // MessageId: ERROR_GENERIC_NOT_MAPPED
  3819. //
  3820. // MessageText:
  3821. //
  3822. //  Generic access types were contained in an access mask which should
  3823. //  already be mapped to non-generic types.
  3824. //
  3825. #define ERROR_GENERIC_NOT_MAPPED         1360L
  3826.  
  3827. //
  3828. // MessageId: ERROR_BAD_DESCRIPTOR_FORMAT
  3829. //
  3830. // MessageText:
  3831. //
  3832. //  A security descriptor is not in the right format (absolute or self-relative).
  3833. //
  3834. #define ERROR_BAD_DESCRIPTOR_FORMAT      1361L
  3835.  
  3836. //
  3837. // MessageId: ERROR_NOT_LOGON_PROCESS
  3838. //
  3839. // MessageText:
  3840. //
  3841. //  The requested action is restricted for use by logon processes
  3842. //  only.  The calling process has not registered as a logon process.
  3843. //
  3844. #define ERROR_NOT_LOGON_PROCESS          1362L
  3845.  
  3846. //
  3847. // MessageId: ERROR_LOGON_SESSION_EXISTS
  3848. //
  3849. // MessageText:
  3850. //
  3851. //  Cannot start a new logon session with an ID that is already in use.
  3852. //
  3853. #define ERROR_LOGON_SESSION_EXISTS       1363L
  3854.  
  3855. //
  3856. // MessageId: ERROR_NO_SUCH_PACKAGE
  3857. //
  3858. // MessageText:
  3859. //
  3860. //  A specified authentication package is unknown.
  3861. //
  3862. #define ERROR_NO_SUCH_PACKAGE            1364L
  3863.  
  3864. //
  3865. // MessageId: ERROR_BAD_LOGON_SESSION_STATE
  3866. //
  3867. // MessageText:
  3868. //
  3869. //  The logon session is not in a state that is consistent with the
  3870. //  requested operation.
  3871. //
  3872. #define ERROR_BAD_LOGON_SESSION_STATE    1365L
  3873.  
  3874. //
  3875. // MessageId: ERROR_LOGON_SESSION_COLLISION
  3876. //
  3877. // MessageText:
  3878. //
  3879. //  The logon session ID is already in use.
  3880. //
  3881. #define ERROR_LOGON_SESSION_COLLISION    1366L
  3882.  
  3883. //
  3884. // MessageId: ERROR_INVALID_LOGON_TYPE
  3885. //
  3886. // MessageText:
  3887. //
  3888. //  A logon request contained an invalid logon type value.
  3889. //
  3890. #define ERROR_INVALID_LOGON_TYPE         1367L
  3891.  
  3892. //
  3893. // MessageId: ERROR_CANNOT_IMPERSONATE
  3894. //
  3895. // MessageText:
  3896. //
  3897. //  Unable to impersonate via a named pipe until data has been read
  3898. //  from that pipe.
  3899. //
  3900. #define ERROR_CANNOT_IMPERSONATE         1368L
  3901.  
  3902. //
  3903. // MessageId: ERROR_RXACT_INVALID_STATE
  3904. //
  3905. // MessageText:
  3906. //
  3907. //  The transaction state of a Registry subtree is incompatible with the
  3908. //  requested operation.
  3909. //
  3910. #define ERROR_RXACT_INVALID_STATE        1369L
  3911.  
  3912. //
  3913. // MessageId: ERROR_RXACT_COMMIT_FAILURE
  3914. //
  3915. // MessageText:
  3916. //
  3917. //  An internal security database corruption has been encountered.
  3918. //
  3919. #define ERROR_RXACT_COMMIT_FAILURE       1370L
  3920.  
  3921. //
  3922. // MessageId: ERROR_SPECIAL_ACCOUNT
  3923. //
  3924. // MessageText:
  3925. //
  3926. //  Cannot perform this operation on built-in accounts.
  3927. //
  3928. #define ERROR_SPECIAL_ACCOUNT            1371L
  3929.  
  3930. //
  3931. // MessageId: ERROR_SPECIAL_GROUP
  3932. //
  3933. // MessageText:
  3934. //
  3935. //  Cannot perform this operation on this built-in special group.
  3936. //
  3937. #define ERROR_SPECIAL_GROUP              1372L
  3938.  
  3939. //
  3940. // MessageId: ERROR_SPECIAL_USER
  3941. //
  3942. // MessageText:
  3943. //
  3944. //  Cannot perform this operation on this built-in special user.
  3945. //
  3946. #define ERROR_SPECIAL_USER               1373L
  3947.  
  3948. //
  3949. // MessageId: ERROR_MEMBERS_PRIMARY_GROUP
  3950. //
  3951. // MessageText:
  3952. //
  3953. //  The user cannot be removed from a group because the group
  3954. //  is currently the user's primary group.
  3955. //
  3956. #define ERROR_MEMBERS_PRIMARY_GROUP      1374L
  3957.  
  3958. //
  3959. // MessageId: ERROR_TOKEN_ALREADY_IN_USE
  3960. //
  3961. // MessageText:
  3962. //
  3963. //  The token is already in use as a primary token.
  3964. //
  3965. #define ERROR_TOKEN_ALREADY_IN_USE       1375L
  3966.  
  3967. //
  3968. // MessageId: ERROR_NO_SUCH_ALIAS
  3969. //
  3970. // MessageText:
  3971. //
  3972. //  The specified local group does not exist.
  3973. //
  3974. #define ERROR_NO_SUCH_ALIAS              1376L
  3975.  
  3976. //
  3977. // MessageId: ERROR_MEMBER_NOT_IN_ALIAS
  3978. //
  3979. // MessageText:
  3980. //
  3981. //  The specified account name is not a member of the local group.
  3982. //
  3983. #define ERROR_MEMBER_NOT_IN_ALIAS        1377L
  3984.  
  3985. //
  3986. // MessageId: ERROR_MEMBER_IN_ALIAS
  3987. //
  3988. // MessageText:
  3989. //
  3990. //  The specified account name is already a member of the local group.
  3991. //
  3992. #define ERROR_MEMBER_IN_ALIAS            1378L
  3993.  
  3994. //
  3995. // MessageId: ERROR_ALIAS_EXISTS
  3996. //
  3997. // MessageText:
  3998. //
  3999. //  The specified local group already exists.
  4000. //
  4001. #define ERROR_ALIAS_EXISTS               1379L
  4002.  
  4003. //
  4004. // MessageId: ERROR_LOGON_NOT_GRANTED
  4005. //
  4006. // MessageText:
  4007. //
  4008. //  Logon failure: the user has not been granted the requested
  4009. //  logon type at this computer.
  4010. //
  4011. #define ERROR_LOGON_NOT_GRANTED          1380L
  4012.  
  4013. //
  4014. // MessageId: ERROR_TOO_MANY_SECRETS
  4015. //
  4016. // MessageText:
  4017. //
  4018. //  The maximum number of secrets that may be stored in a single system has been
  4019. //  exceeded.
  4020. //
  4021. #define ERROR_TOO_MANY_SECRETS           1381L
  4022.  
  4023. //
  4024. // MessageId: ERROR_SECRET_TOO_LONG
  4025. //
  4026. // MessageText:
  4027. //
  4028. //  The length of a secret exceeds the maximum length allowed.
  4029. //
  4030. #define ERROR_SECRET_TOO_LONG            1382L
  4031.  
  4032. //
  4033. // MessageId: ERROR_INTERNAL_DB_ERROR
  4034. //
  4035. // MessageText:
  4036. //
  4037. //  The local security authority database contains an internal inconsistency.
  4038. //
  4039. #define ERROR_INTERNAL_DB_ERROR          1383L
  4040.  
  4041. //
  4042. // MessageId: ERROR_TOO_MANY_CONTEXT_IDS
  4043. //
  4044. // MessageText:
  4045. //
  4046. //  During a logon attempt, the user's security context accumulated too many
  4047. //  security IDs.
  4048. //
  4049. #define ERROR_TOO_MANY_CONTEXT_IDS       1384L
  4050.  
  4051. //
  4052. // MessageId: ERROR_LOGON_TYPE_NOT_GRANTED
  4053. //
  4054. // MessageText:
  4055. //
  4056. //  Logon failure: the user has not been granted the requested logon type
  4057. //  at this computer.
  4058. //
  4059. #define ERROR_LOGON_TYPE_NOT_GRANTED     1385L
  4060.  
  4061. //
  4062. // MessageId: ERROR_NT_CROSS_ENCRYPTION_REQUIRED
  4063. //
  4064. // MessageText:
  4065. //
  4066. //  A cross-encrypted password is necessary to change a user password.
  4067. //
  4068. #define ERROR_NT_CROSS_ENCRYPTION_REQUIRED 1386L
  4069.  
  4070. //
  4071. // MessageId: ERROR_NO_SUCH_MEMBER
  4072. //
  4073. // MessageText:
  4074. //
  4075. //  A new member could not be added to a local group because the member does
  4076. //  not exist.
  4077. //
  4078. #define ERROR_NO_SUCH_MEMBER             1387L
  4079.  
  4080. //
  4081. // MessageId: ERROR_INVALID_MEMBER
  4082. //
  4083. // MessageText:
  4084. //
  4085. //  A new member could not be added to a local group because the member has the
  4086. //  wrong account type.
  4087. //
  4088. #define ERROR_INVALID_MEMBER             1388L
  4089.  
  4090. //
  4091. // MessageId: ERROR_TOO_MANY_SIDS
  4092. //
  4093. // MessageText:
  4094. //
  4095. //  Too many security IDs have been specified.
  4096. //
  4097. #define ERROR_TOO_MANY_SIDS              1389L
  4098.  
  4099. //
  4100. // MessageId: ERROR_LM_CROSS_ENCRYPTION_REQUIRED
  4101. //
  4102. // MessageText:
  4103. //
  4104. //  A cross-encrypted password is necessary to change this user password.
  4105. //
  4106. #define ERROR_LM_CROSS_ENCRYPTION_REQUIRED 1390L
  4107.  
  4108. //
  4109. // MessageId: ERROR_NO_INHERITANCE
  4110. //
  4111. // MessageText:
  4112. //
  4113. //  Indicates an ACL contains no inheritable components
  4114. //
  4115. #define ERROR_NO_INHERITANCE             1391L
  4116.  
  4117. //
  4118. // MessageId: ERROR_FILE_CORRUPT
  4119. //
  4120. // MessageText:
  4121. //
  4122. //  The file or directory is corrupt and non-readable.
  4123. //
  4124. #define ERROR_FILE_CORRUPT               1392L
  4125.  
  4126. //
  4127. // MessageId: ERROR_DISK_CORRUPT
  4128. //
  4129. // MessageText:
  4130. //
  4131. //  The disk structure is corrupt and non-readable.
  4132. //
  4133. #define ERROR_DISK_CORRUPT               1393L
  4134.  
  4135. //
  4136. // MessageId: ERROR_NO_USER_SESSION_KEY
  4137. //
  4138. // MessageText:
  4139. //
  4140. //  There is no user session key for the specified logon session.
  4141. //
  4142. #define ERROR_NO_USER_SESSION_KEY        1394L
  4143.  
  4144. //
  4145. // MessageId: ERROR_LICENSE_QUOTA_EXCEEDED
  4146. //
  4147. // MessageText:
  4148. //
  4149. //  The service being accessed is licensed for a particular number of
  4150. //  connections. No more connections can be made to the service at this time
  4151. //  because there are already as many connections as the service can accept.
  4152. //
  4153. #define ERROR_LICENSE_QUOTA_EXCEEDED     1395L
  4154.  
  4155. // End of security error codes
  4156.  
  4157.  
  4158.  
  4159. ///////////////////////////
  4160. //                       //
  4161. // WinUser Error Codes   //
  4162. //                       //
  4163. ///////////////////////////
  4164.  
  4165.  
  4166. //
  4167. // MessageId: ERROR_INVALID_WINDOW_HANDLE
  4168. //
  4169. // MessageText:
  4170. //
  4171. //  Invalid window handle.
  4172. //
  4173. #define ERROR_INVALID_WINDOW_HANDLE      1400L
  4174.  
  4175. //
  4176. // MessageId: ERROR_INVALID_MENU_HANDLE
  4177. //
  4178. // MessageText:
  4179. //
  4180. //  Invalid menu handle.
  4181. //
  4182. #define ERROR_INVALID_MENU_HANDLE        1401L
  4183.  
  4184. //
  4185. // MessageId: ERROR_INVALID_CURSOR_HANDLE
  4186. //
  4187. // MessageText:
  4188. //
  4189. //  Invalid cursor handle.
  4190. //
  4191. #define ERROR_INVALID_CURSOR_HANDLE      1402L
  4192.  
  4193. //
  4194. // MessageId: ERROR_INVALID_ACCEL_HANDLE
  4195. //
  4196. // MessageText:
  4197. //
  4198. //  Invalid accelerator table handle.
  4199. //
  4200. #define ERROR_INVALID_ACCEL_HANDLE       1403L
  4201.  
  4202. //
  4203. // MessageId: ERROR_INVALID_HOOK_HANDLE
  4204. //
  4205. // MessageText:
  4206. //
  4207. //  Invalid hook handle.
  4208. //
  4209. #define ERROR_INVALID_HOOK_HANDLE        1404L
  4210.  
  4211. //
  4212. // MessageId: ERROR_INVALID_DWP_HANDLE
  4213. //
  4214. // MessageText:
  4215. //
  4216. //  Invalid handle to a multiple-window position structure.
  4217. //
  4218. #define ERROR_INVALID_DWP_HANDLE         1405L
  4219.  
  4220. //
  4221. // MessageId: ERROR_TLW_WITH_WSCHILD
  4222. //
  4223. // MessageText:
  4224. //
  4225. //  Cannot create a top-level child window.
  4226. //
  4227. #define ERROR_TLW_WITH_WSCHILD           1406L
  4228.  
  4229. //
  4230. // MessageId: ERROR_CANNOT_FIND_WND_CLASS
  4231. //
  4232. // MessageText:
  4233. //
  4234. //  Cannot find window class.
  4235. //
  4236. #define ERROR_CANNOT_FIND_WND_CLASS      1407L
  4237.  
  4238. //
  4239. // MessageId: ERROR_WINDOW_OF_OTHER_THREAD
  4240. //
  4241. // MessageText:
  4242. //
  4243. //  Invalid window, belongs to other thread.
  4244. //
  4245. #define ERROR_WINDOW_OF_OTHER_THREAD     1408L
  4246.  
  4247. //
  4248. // MessageId: ERROR_HOTKEY_ALREADY_REGISTERED
  4249. //
  4250. // MessageText:
  4251. //
  4252. //  Hot key is already registered.
  4253. //
  4254. #define ERROR_HOTKEY_ALREADY_REGISTERED  1409L
  4255.  
  4256. //
  4257. // MessageId: ERROR_CLASS_ALREADY_EXISTS
  4258. //
  4259. // MessageText:
  4260. //
  4261. //  Class already exists.
  4262. //
  4263. #define ERROR_CLASS_ALREADY_EXISTS       1410L
  4264.  
  4265. //
  4266. // MessageId: ERROR_CLASS_DOES_NOT_EXIST
  4267. //
  4268. // MessageText:
  4269. //
  4270. //  Class does not exist.
  4271. //
  4272. #define ERROR_CLASS_DOES_NOT_EXIST       1411L
  4273.  
  4274. //
  4275. // MessageId: ERROR_CLASS_HAS_WINDOWS
  4276. //
  4277. // MessageText:
  4278. //
  4279. //  Class still has open windows.
  4280. //
  4281. #define ERROR_CLASS_HAS_WINDOWS          1412L
  4282.  
  4283. //
  4284. // MessageId: ERROR_INVALID_INDEX
  4285. //
  4286. // MessageText:
  4287. //
  4288. //  Invalid index.
  4289. //
  4290. #define ERROR_INVALID_INDEX              1413L
  4291.  
  4292. //
  4293. // MessageId: ERROR_INVALID_ICON_HANDLE
  4294. //
  4295. // MessageText:
  4296. //
  4297. //  Invalid icon handle.
  4298. //
  4299. #define ERROR_INVALID_ICON_HANDLE        1414L
  4300.  
  4301. //
  4302. // MessageId: ERROR_PRIVATE_DIALOG_INDEX
  4303. //
  4304. // MessageText:
  4305. //
  4306. //  Using private DIALOG window words.
  4307. //
  4308. #define ERROR_PRIVATE_DIALOG_INDEX       1415L
  4309.  
  4310. //
  4311. // MessageId: ERROR_LISTBOX_ID_NOT_FOUND
  4312. //
  4313. // MessageText:
  4314. //
  4315. //  The listbox identifier was not found.
  4316. //
  4317. #define ERROR_LISTBOX_ID_NOT_FOUND       1416L
  4318.  
  4319. //
  4320. // MessageId: ERROR_NO_WILDCARD_CHARACTERS
  4321. //
  4322. // MessageText:
  4323. //
  4324. //  No wildcards were found.
  4325. //
  4326. #define ERROR_NO_WILDCARD_CHARACTERS     1417L
  4327.  
  4328. //
  4329. // MessageId: ERROR_CLIPBOARD_NOT_OPEN
  4330. //
  4331. // MessageText:
  4332. //
  4333. //  Thread does not have a clipboard open.
  4334. //
  4335. #define ERROR_CLIPBOARD_NOT_OPEN         1418L
  4336.  
  4337. //
  4338. // MessageId: ERROR_HOTKEY_NOT_REGISTERED
  4339. //
  4340. // MessageText:
  4341. //
  4342. //  Hot key is not registered.
  4343. //
  4344. #define ERROR_HOTKEY_NOT_REGISTERED      1419L
  4345.  
  4346. //
  4347. // MessageId: ERROR_WINDOW_NOT_DIALOG
  4348. //
  4349. // MessageText:
  4350. //
  4351. //  The window is not a valid dialog window.
  4352. //
  4353. #define ERROR_WINDOW_NOT_DIALOG          1420L
  4354.  
  4355. //
  4356. // MessageId: ERROR_CONTROL_ID_NOT_FOUND
  4357. //
  4358. // MessageText:
  4359. //
  4360. //  Control ID not found.
  4361. //
  4362. #define ERROR_CONTROL_ID_NOT_FOUND       1421L
  4363.  
  4364. //
  4365. // MessageId: ERROR_INVALID_COMBOBOX_MESSAGE
  4366. //
  4367. // MessageText:
  4368. //
  4369. //  Invalid message for a combo box because it does not have an edit control.
  4370. //
  4371. #define ERROR_INVALID_COMBOBOX_MESSAGE   1422L
  4372.  
  4373. //
  4374. // MessageId: ERROR_WINDOW_NOT_COMBOBOX
  4375. //
  4376. // MessageText:
  4377. //
  4378. //  The window is not a combo box.
  4379. //
  4380. #define ERROR_WINDOW_NOT_COMBOBOX        1423L
  4381.  
  4382. //
  4383. // MessageId: ERROR_INVALID_EDIT_HEIGHT
  4384. //
  4385. // MessageText:
  4386. //
  4387. //  Height must be less than 256.
  4388. //
  4389. #define ERROR_INVALID_EDIT_HEIGHT        1424L
  4390.  
  4391. //
  4392. // MessageId: ERROR_DC_NOT_FOUND
  4393. //
  4394. // MessageText:
  4395. //
  4396. //  Invalid device context (DC) handle.
  4397. //
  4398. #define ERROR_DC_NOT_FOUND               1425L
  4399.  
  4400. //
  4401. // MessageId: ERROR_INVALID_HOOK_FILTER
  4402. //
  4403. // MessageText:
  4404. //
  4405. //  Invalid hook procedure type.
  4406. //
  4407. #define ERROR_INVALID_HOOK_FILTER        1426L
  4408.  
  4409. //
  4410. // MessageId: ERROR_INVALID_FILTER_PROC
  4411. //
  4412. // MessageText:
  4413. //
  4414. //  Invalid hook procedure.
  4415. //
  4416. #define ERROR_INVALID_FILTER_PROC        1427L
  4417.  
  4418. //
  4419. // MessageId: ERROR_HOOK_NEEDS_HMOD
  4420. //
  4421. // MessageText:
  4422. //
  4423. //  Cannot set non-local hook without a module handle.
  4424. //
  4425. #define ERROR_HOOK_NEEDS_HMOD            1428L
  4426.  
  4427. //
  4428. // MessageId: ERROR_GLOBAL_ONLY_HOOK
  4429. //
  4430. // MessageText:
  4431. //
  4432. //  This hook procedure can only be set globally.
  4433. //
  4434. #define ERROR_GLOBAL_ONLY_HOOK           1429L
  4435.  
  4436. //
  4437. // MessageId: ERROR_JOURNAL_HOOK_SET
  4438. //
  4439. // MessageText:
  4440. //
  4441. //  The journal hook procedure is already installed.
  4442. //
  4443. #define ERROR_JOURNAL_HOOK_SET           1430L
  4444.  
  4445. //
  4446. // MessageId: ERROR_HOOK_NOT_INSTALLED
  4447. //
  4448. // MessageText:
  4449. //
  4450. //  The hook procedure is not installed.
  4451. //
  4452. #define ERROR_HOOK_NOT_INSTALLED         1431L
  4453.  
  4454. //
  4455. // MessageId: ERROR_INVALID_LB_MESSAGE
  4456. //
  4457. // MessageText:
  4458. //
  4459. //  Invalid message for single-selection listbox.
  4460. //
  4461. #define ERROR_INVALID_LB_MESSAGE         1432L
  4462.  
  4463. //
  4464. // MessageId: ERROR_SETCOUNT_ON_BAD_LB
  4465. //
  4466. // MessageText:
  4467. //
  4468. //  LB_SETCOUNT sent to non-lazy listbox.
  4469. //
  4470. #define ERROR_SETCOUNT_ON_BAD_LB         1433L
  4471.  
  4472. //
  4473. // MessageId: ERROR_LB_WITHOUT_TABSTOPS
  4474. //
  4475. // MessageText:
  4476. //
  4477. //  This list box does not support tab stops.
  4478. //
  4479. #define ERROR_LB_WITHOUT_TABSTOPS        1434L
  4480.  
  4481. //
  4482. // MessageId: ERROR_DESTROY_OBJECT_OF_OTHER_THREAD
  4483. //
  4484. // MessageText:
  4485. //
  4486. //  Cannot destroy object created by another thread.
  4487. //
  4488. #define ERROR_DESTROY_OBJECT_OF_OTHER_THREAD 1435L
  4489.  
  4490. //
  4491. // MessageId: ERROR_CHILD_WINDOW_MENU
  4492. //
  4493. // MessageText:
  4494. //
  4495. //  Child windows cannot have menus.
  4496. //
  4497. #define ERROR_CHILD_WINDOW_MENU          1436L
  4498.  
  4499. //
  4500. // MessageId: ERROR_NO_SYSTEM_MENU
  4501. //
  4502. // MessageText:
  4503. //
  4504. //  The window does not have a system menu.
  4505. //
  4506. #define ERROR_NO_SYSTEM_MENU             1437L
  4507.  
  4508. //
  4509. // MessageId: ERROR_INVALID_MSGBOX_STYLE
  4510. //
  4511. // MessageText:
  4512. //
  4513. //  Invalid message box style.
  4514. //
  4515. #define ERROR_INVALID_MSGBOX_STYLE       1438L
  4516.  
  4517. //
  4518. // MessageId: ERROR_INVALID_SPI_VALUE
  4519. //
  4520. // MessageText:
  4521. //
  4522. //  Invalid system-wide (SPI_*) parameter.
  4523. //
  4524. #define ERROR_INVALID_SPI_VALUE          1439L
  4525.  
  4526. //
  4527. // MessageId: ERROR_SCREEN_ALREADY_LOCKED
  4528. //
  4529. // MessageText:
  4530. //
  4531. //  Screen already locked.
  4532. //
  4533. #define ERROR_SCREEN_ALREADY_LOCKED      1440L
  4534.  
  4535. //
  4536. // MessageId: ERROR_HWNDS_HAVE_DIFF_PARENT
  4537. //
  4538. // MessageText:
  4539. //
  4540. //  All handles to windows in a multiple-window position structure must
  4541. //  have the same parent.
  4542. //
  4543. #define ERROR_HWNDS_HAVE_DIFF_PARENT     1441L
  4544.  
  4545. //
  4546. // MessageId: ERROR_NOT_CHILD_WINDOW
  4547. //
  4548. // MessageText:
  4549. //
  4550. //  The window is not a child window.
  4551. //
  4552. #define ERROR_NOT_CHILD_WINDOW           1442L
  4553.  
  4554. //
  4555. // MessageId: ERROR_INVALID_GW_COMMAND
  4556. //
  4557. // MessageText:
  4558. //
  4559. //  Invalid GW_* command.
  4560. //
  4561. #define ERROR_INVALID_GW_COMMAND         1443L
  4562.  
  4563. //
  4564. // MessageId: ERROR_INVALID_THREAD_ID
  4565. //
  4566. // MessageText:
  4567. //
  4568. //  Invalid thread identifier.
  4569. //
  4570. #define ERROR_INVALID_THREAD_ID          1444L
  4571.  
  4572. //
  4573. // MessageId: ERROR_NON_MDICHILD_WINDOW
  4574. //
  4575. // MessageText:
  4576. //
  4577. //  Cannot process a message from a window that is not a multiple document
  4578. //  interface (MDI) window.
  4579. //
  4580. #define ERROR_NON_MDICHILD_WINDOW        1445L
  4581.  
  4582. //
  4583. // MessageId: ERROR_POPUP_ALREADY_ACTIVE
  4584. //
  4585. // MessageText:
  4586. //
  4587. //  Popup menu already active.
  4588. //
  4589. #define ERROR_POPUP_ALREADY_ACTIVE       1446L
  4590.  
  4591. //
  4592. // MessageId: ERROR_NO_SCROLLBARS
  4593. //
  4594. // MessageText:
  4595. //
  4596. //  The window does not have scroll bars.
  4597. //
  4598. #define ERROR_NO_SCROLLBARS              1447L
  4599.  
  4600. //
  4601. // MessageId: ERROR_INVALID_SCROLLBAR_RANGE
  4602. //
  4603. // MessageText:
  4604. //
  4605. //  Scroll bar range cannot be greater than 0x7FFF.
  4606. //
  4607. #define ERROR_INVALID_SCROLLBAR_RANGE    1448L
  4608.  
  4609. //
  4610. // MessageId: ERROR_INVALID_SHOWWIN_COMMAND
  4611. //
  4612. // MessageText:
  4613. //
  4614. //  Cannot show or remove the window in the way specified.
  4615. //
  4616. #define ERROR_INVALID_SHOWWIN_COMMAND    1449L
  4617.  
  4618. //
  4619. // MessageId: ERROR_NO_SYSTEM_RESOURCES
  4620. //
  4621. // MessageText:
  4622. //
  4623. //  Insufficient system resources exist to complete the requested service.
  4624. //
  4625. #define ERROR_NO_SYSTEM_RESOURCES        1450L
  4626.  
  4627. //
  4628. // MessageId: ERROR_NONPAGED_SYSTEM_RESOURCES
  4629. //
  4630. // MessageText:
  4631. //
  4632. //  Insufficient system resources exist to complete the requested service.
  4633. //
  4634. #define ERROR_NONPAGED_SYSTEM_RESOURCES  1451L
  4635.  
  4636. //
  4637. // MessageId: ERROR_PAGED_SYSTEM_RESOURCES
  4638. //
  4639. // MessageText:
  4640. //
  4641. //  Insufficient system resources exist to complete the requested service.
  4642. //
  4643. #define ERROR_PAGED_SYSTEM_RESOURCES     1452L
  4644.  
  4645. //
  4646. // MessageId: ERROR_WORKING_SET_QUOTA
  4647. //
  4648. // MessageText:
  4649. //
  4650. //  Insufficient quota to complete the requested service.
  4651. //
  4652. #define ERROR_WORKING_SET_QUOTA          1453L
  4653.  
  4654. //
  4655. // MessageId: ERROR_PAGEFILE_QUOTA
  4656. //
  4657. // MessageText:
  4658. //
  4659. //  Insufficient quota to complete the requested service.
  4660. //
  4661. #define ERROR_PAGEFILE_QUOTA             1454L
  4662.  
  4663. //
  4664. // MessageId: ERROR_COMMITMENT_LIMIT
  4665. //
  4666. // MessageText:
  4667. //
  4668. //  The paging file is too small for this operation to complete.
  4669. //
  4670. #define ERROR_COMMITMENT_LIMIT           1455L
  4671.  
  4672. //
  4673. // MessageId: ERROR_MENU_ITEM_NOT_FOUND
  4674. //
  4675. // MessageText:
  4676. //
  4677. //  A menu item was not found.
  4678. //
  4679. #define ERROR_MENU_ITEM_NOT_FOUND        1456L
  4680.  
  4681. // End of WinUser error codes
  4682.  
  4683.  
  4684.  
  4685. ///////////////////////////
  4686. //                       //
  4687. // Eventlog Status Codes //
  4688. //                       //
  4689. ///////////////////////////
  4690.  
  4691.  
  4692. //
  4693. // MessageId: ERROR_EVENTLOG_FILE_CORRUPT
  4694. //
  4695. // MessageText:
  4696. //
  4697. //  The event log file is corrupt.
  4698. //
  4699. #define ERROR_EVENTLOG_FILE_CORRUPT      1500L
  4700.  
  4701. //
  4702. // MessageId: ERROR_EVENTLOG_CANT_START
  4703. //
  4704. // MessageText:
  4705. //
  4706. //  No event log file could be opened, so the event logging service did not start.
  4707. //
  4708. #define ERROR_EVENTLOG_CANT_START        1501L
  4709.  
  4710. //
  4711. // MessageId: ERROR_LOG_FILE_FULL
  4712. //
  4713. // MessageText:
  4714. //
  4715. //  The event log file is full.
  4716. //
  4717. #define ERROR_LOG_FILE_FULL              1502L
  4718.  
  4719. //
  4720. // MessageId: ERROR_EVENTLOG_FILE_CHANGED
  4721. //
  4722. // MessageText:
  4723. //
  4724. //  The event log file has changed between reads.
  4725. //
  4726. #define ERROR_EVENTLOG_FILE_CHANGED      1503L
  4727.  
  4728. // End of eventlog error codes
  4729.  
  4730.  
  4731.  
  4732. ///////////////////////////
  4733. //                       //
  4734. //   RPC Status Codes    //
  4735. //                       //
  4736. ///////////////////////////
  4737.  
  4738.  
  4739. //
  4740. // MessageId: RPC_S_INVALID_STRING_BINDING
  4741. //
  4742. // MessageText:
  4743. //
  4744. //  The string binding is invalid.
  4745. //
  4746. #define RPC_S_INVALID_STRING_BINDING     1700L
  4747.  
  4748. //
  4749. // MessageId: RPC_S_WRONG_KIND_OF_BINDING
  4750. //
  4751. // MessageText:
  4752. //
  4753. //  The binding handle is not the correct type.
  4754. //
  4755. #define RPC_S_WRONG_KIND_OF_BINDING      1701L
  4756.  
  4757. //
  4758. // MessageId: RPC_S_INVALID_BINDING
  4759. //
  4760. // MessageText:
  4761. //
  4762. //  The binding handle is invalid.
  4763. //
  4764. #define RPC_S_INVALID_BINDING            1702L
  4765.  
  4766. //
  4767. // MessageId: RPC_S_PROTSEQ_NOT_SUPPORTED
  4768. //
  4769. // MessageText:
  4770. //
  4771. //  The RPC protocol sequence is not supported.
  4772. //
  4773. #define RPC_S_PROTSEQ_NOT_SUPPORTED      1703L
  4774.  
  4775. //
  4776. // MessageId: RPC_S_INVALID_RPC_PROTSEQ
  4777. //
  4778. // MessageText:
  4779. //
  4780. //  The RPC protocol sequence is invalid.
  4781. //
  4782. #define RPC_S_INVALID_RPC_PROTSEQ        1704L
  4783.  
  4784. //
  4785. // MessageId: RPC_S_INVALID_STRING_UUID
  4786. //
  4787. // MessageText:
  4788. //
  4789. //  The string universal unique identifier (UUID) is invalid.
  4790. //
  4791. #define RPC_S_INVALID_STRING_UUID        1705L
  4792.  
  4793. //
  4794. // MessageId: RPC_S_INVALID_ENDPOINT_FORMAT
  4795. //
  4796. // MessageText:
  4797. //
  4798. //  The endpoint format is invalid.
  4799. //
  4800. #define RPC_S_INVALID_ENDPOINT_FORMAT    1706L
  4801.  
  4802. //
  4803. // MessageId: RPC_S_INVALID_NET_ADDR
  4804. //
  4805. // MessageText:
  4806. //
  4807. //  The network address is invalid.
  4808. //
  4809. #define RPC_S_INVALID_NET_ADDR           1707L
  4810.  
  4811. //
  4812. // MessageId: RPC_S_NO_ENDPOINT_FOUND
  4813. //
  4814. // MessageText:
  4815. //
  4816. //  No endpoint was found.
  4817. //
  4818. #define RPC_S_NO_ENDPOINT_FOUND          1708L
  4819.  
  4820. //
  4821. // MessageId: RPC_S_INVALID_TIMEOUT
  4822. //
  4823. // MessageText:
  4824. //
  4825. //  The timeout value is invalid.
  4826. //
  4827. #define RPC_S_INVALID_TIMEOUT            1709L
  4828.  
  4829. //
  4830. // MessageId: RPC_S_OBJECT_NOT_FOUND
  4831. //
  4832. // MessageText:
  4833. //
  4834. //  The object universal unique identifier (UUID) was not found.
  4835. //
  4836. #define RPC_S_OBJECT_NOT_FOUND           1710L
  4837.  
  4838. //
  4839. // MessageId: RPC_S_ALREADY_REGISTERED
  4840. //
  4841. // MessageText:
  4842. //
  4843. //  The object universal unique identifier (UUID) has already been registered.
  4844. //
  4845. #define RPC_S_ALREADY_REGISTERED         1711L
  4846.  
  4847. //
  4848. // MessageId: RPC_S_TYPE_ALREADY_REGISTERED
  4849. //
  4850. // MessageText:
  4851. //
  4852. //  The type universal unique identifier (UUID) has already been registered.
  4853. //
  4854. #define RPC_S_TYPE_ALREADY_REGISTERED    1712L
  4855.  
  4856. //
  4857. // MessageId: RPC_S_ALREADY_LISTENING
  4858. //
  4859. // MessageText:
  4860. //
  4861. //  The RPC server is already listening.
  4862. //
  4863. #define RPC_S_ALREADY_LISTENING          1713L
  4864.  
  4865. //
  4866. // MessageId: RPC_S_NO_PROTSEQS_REGISTERED
  4867. //
  4868. // MessageText:
  4869. //
  4870. //  No protocol sequences have been registered.
  4871. //
  4872. #define RPC_S_NO_PROTSEQS_REGISTERED     1714L
  4873.  
  4874. //
  4875. // MessageId: RPC_S_NOT_LISTENING
  4876. //
  4877. // MessageText:
  4878. //
  4879. //  The RPC server is not listening.
  4880. //
  4881. #define RPC_S_NOT_LISTENING              1715L
  4882.  
  4883. //
  4884. // MessageId: RPC_S_UNKNOWN_MGR_TYPE
  4885. //
  4886. // MessageText:
  4887. //
  4888. //  The manager type is unknown.
  4889. //
  4890. #define RPC_S_UNKNOWN_MGR_TYPE           1716L
  4891.  
  4892. //
  4893. // MessageId: RPC_S_UNKNOWN_IF
  4894. //
  4895. // MessageText:
  4896. //
  4897. //  The interface is unknown.
  4898. //
  4899. #define RPC_S_UNKNOWN_IF                 1717L
  4900.  
  4901. //
  4902. // MessageId: RPC_S_NO_BINDINGS
  4903. //
  4904. // MessageText:
  4905. //
  4906. //  There are no bindings.
  4907. //
  4908. #define RPC_S_NO_BINDINGS                1718L
  4909.  
  4910. //
  4911. // MessageId: RPC_S_NO_PROTSEQS
  4912. //
  4913. // MessageText:
  4914. //
  4915. //  There are no protocol sequences.
  4916. //
  4917. #define RPC_S_NO_PROTSEQS                1719L
  4918.  
  4919. //
  4920. // MessageId: RPC_S_CANT_CREATE_ENDPOINT
  4921. //
  4922. // MessageText:
  4923. //
  4924. //  The endpoint cannot be created.
  4925. //
  4926. #define RPC_S_CANT_CREATE_ENDPOINT       1720L
  4927.  
  4928. //
  4929. // MessageId: RPC_S_OUT_OF_RESOURCES
  4930. //
  4931. // MessageText:
  4932. //
  4933. //  Not enough resources are available to complete this operation.
  4934. //
  4935. #define RPC_S_OUT_OF_RESOURCES           1721L
  4936.  
  4937. //
  4938. // MessageId: RPC_S_SERVER_UNAVAILABLE
  4939. //
  4940. // MessageText:
  4941. //
  4942. //  The RPC server is unavailable.
  4943. //
  4944. #define RPC_S_SERVER_UNAVAILABLE         1722L
  4945.  
  4946. //
  4947. // MessageId: RPC_S_SERVER_TOO_BUSY
  4948. //
  4949. // MessageText:
  4950. //
  4951. //  The RPC server is too busy to complete this operation.
  4952. //
  4953. #define RPC_S_SERVER_TOO_BUSY            1723L
  4954.  
  4955. //
  4956. // MessageId: RPC_S_INVALID_NETWORK_OPTIONS
  4957. //
  4958. // MessageText:
  4959. //
  4960. //  The network options are invalid.
  4961. //
  4962. #define RPC_S_INVALID_NETWORK_OPTIONS    1724L
  4963.  
  4964. //
  4965. // MessageId: RPC_S_NO_CALL_ACTIVE
  4966. //
  4967. // MessageText:
  4968. //
  4969. //  There is not a remote procedure call active in this thread.
  4970. //
  4971. #define RPC_S_NO_CALL_ACTIVE             1725L
  4972.  
  4973. //
  4974. // MessageId: RPC_S_CALL_FAILED
  4975. //
  4976. // MessageText:
  4977. //
  4978. //  The remote procedure call failed.
  4979. //
  4980. #define RPC_S_CALL_FAILED                1726L
  4981.  
  4982. //
  4983. // MessageId: RPC_S_CALL_FAILED_DNE
  4984. //
  4985. // MessageText:
  4986. //
  4987. //  The remote procedure call failed and did not execute.
  4988. //
  4989. #define RPC_S_CALL_FAILED_DNE            1727L
  4990.  
  4991. //
  4992. // MessageId: RPC_S_PROTOCOL_ERROR
  4993. //
  4994. // MessageText:
  4995. //
  4996. //  A remote procedure call (RPC) protocol error occurred.
  4997. //
  4998. #define RPC_S_PROTOCOL_ERROR             1728L
  4999.  
  5000. //
  5001. // MessageId: RPC_S_UNSUPPORTED_TRANS_SYN
  5002. //
  5003. // MessageText:
  5004. //
  5005. //  The transfer syntax is not supported by the RPC server.
  5006. //
  5007. #define RPC_S_UNSUPPORTED_TRANS_SYN      1730L
  5008.  
  5009. //
  5010. // MessageId: RPC_S_UNSUPPORTED_TYPE
  5011. //
  5012. // MessageText:
  5013. //
  5014. //  The universal unique identifier (UUID) type is not supported.
  5015. //
  5016. #define RPC_S_UNSUPPORTED_TYPE           1732L
  5017.  
  5018. //
  5019. // MessageId: RPC_S_INVALID_TAG
  5020. //
  5021. // MessageText:
  5022. //
  5023. //  The tag is invalid.
  5024. //
  5025. #define RPC_S_INVALID_TAG                1733L
  5026.  
  5027. //
  5028. // MessageId: RPC_S_INVALID_BOUND
  5029. //
  5030. // MessageText:
  5031. //
  5032. //  The array bounds are invalid.
  5033. //
  5034. #define RPC_S_INVALID_BOUND              1734L
  5035.  
  5036. //
  5037. // MessageId: RPC_S_NO_ENTRY_NAME
  5038. //
  5039. // MessageText:
  5040. //
  5041. //  The binding does not contain an entry name.
  5042. //
  5043. #define RPC_S_NO_ENTRY_NAME              1735L
  5044.  
  5045. //
  5046. // MessageId: RPC_S_INVALID_NAME_SYNTAX
  5047. //
  5048. // MessageText:
  5049. //
  5050. //  The name syntax is invalid.
  5051. //
  5052. #define RPC_S_INVALID_NAME_SYNTAX        1736L
  5053.  
  5054. //
  5055. // MessageId: RPC_S_UNSUPPORTED_NAME_SYNTAX
  5056. //
  5057. // MessageText:
  5058. //
  5059. //  The name syntax is not supported.
  5060. //
  5061. #define RPC_S_UNSUPPORTED_NAME_SYNTAX    1737L
  5062.  
  5063. //
  5064. // MessageId: RPC_S_UUID_NO_ADDRESS
  5065. //
  5066. // MessageText:
  5067. //
  5068. //  No network address is available to use to construct a universal
  5069. //  unique identifier (UUID).
  5070. //
  5071. #define RPC_S_UUID_NO_ADDRESS            1739L
  5072.  
  5073. //
  5074. // MessageId: RPC_S_DUPLICATE_ENDPOINT
  5075. //
  5076. // MessageText:
  5077. //
  5078. //  The endpoint is a duplicate.
  5079. //
  5080. #define RPC_S_DUPLICATE_ENDPOINT         1740L
  5081.  
  5082. //
  5083. // MessageId: RPC_S_UNKNOWN_AUTHN_TYPE
  5084. //
  5085. // MessageText:
  5086. //
  5087. //  The authentication type is unknown.
  5088. //
  5089. #define RPC_S_UNKNOWN_AUTHN_TYPE         1741L
  5090.  
  5091. //
  5092. // MessageId: RPC_S_MAX_CALLS_TOO_SMALL
  5093. //
  5094. // MessageText:
  5095. //
  5096. //  The maximum number of calls is too small.
  5097. //
  5098. #define RPC_S_MAX_CALLS_TOO_SMALL        1742L
  5099.  
  5100. //
  5101. // MessageId: RPC_S_STRING_TOO_LONG
  5102. //
  5103. // MessageText:
  5104. //
  5105. //  The string is too long.
  5106. //
  5107. #define RPC_S_STRING_TOO_LONG            1743L
  5108.  
  5109. //
  5110. // MessageId: RPC_S_PROTSEQ_NOT_FOUND
  5111. //
  5112. // MessageText:
  5113. //
  5114. //  The RPC protocol sequence was not found.
  5115. //
  5116. #define RPC_S_PROTSEQ_NOT_FOUND          1744L
  5117.  
  5118. //
  5119. // MessageId: RPC_S_PROCNUM_OUT_OF_RANGE
  5120. //
  5121. // MessageText:
  5122. //
  5123. //  The procedure number is out of range.
  5124. //
  5125. #define RPC_S_PROCNUM_OUT_OF_RANGE       1745L
  5126.  
  5127. //
  5128. // MessageId: RPC_S_BINDING_HAS_NO_AUTH
  5129. //
  5130. // MessageText:
  5131. //
  5132. //  The binding does not contain any authentication information.
  5133. //
  5134. #define RPC_S_BINDING_HAS_NO_AUTH        1746L
  5135.  
  5136. //
  5137. // MessageId: RPC_S_UNKNOWN_AUTHN_SERVICE
  5138. //
  5139. // MessageText:
  5140. //
  5141. //  The authentication service is unknown.
  5142. //
  5143. #define RPC_S_UNKNOWN_AUTHN_SERVICE      1747L
  5144.  
  5145. //
  5146. // MessageId: RPC_S_UNKNOWN_AUTHN_LEVEL
  5147. //
  5148. // MessageText:
  5149. //
  5150. //  The authentication level is unknown.
  5151. //
  5152. #define RPC_S_UNKNOWN_AUTHN_LEVEL        1748L
  5153.  
  5154. //
  5155. // MessageId: RPC_S_INVALID_AUTH_IDENTITY
  5156. //
  5157. // MessageText:
  5158. //
  5159. //  The security context is invalid.
  5160. //
  5161. #define RPC_S_INVALID_AUTH_IDENTITY      1749L
  5162.  
  5163. //
  5164. // MessageId: RPC_S_UNKNOWN_AUTHZ_SERVICE
  5165. //
  5166. // MessageText:
  5167. //
  5168. //  The authorization service is unknown.
  5169. //
  5170. #define RPC_S_UNKNOWN_AUTHZ_SERVICE      1750L
  5171.  
  5172. //
  5173. // MessageId: EPT_S_INVALID_ENTRY
  5174. //
  5175. // MessageText:
  5176. //
  5177. //  The entry is invalid.
  5178. //
  5179. #define EPT_S_INVALID_ENTRY              1751L
  5180.  
  5181. //
  5182. // MessageId: EPT_S_CANT_PERFORM_OP
  5183. //
  5184. // MessageText:
  5185. //
  5186. //  The server endpoint cannot perform the operation.
  5187. //
  5188. #define EPT_S_CANT_PERFORM_OP            1752L
  5189.  
  5190. //
  5191. // MessageId: EPT_S_NOT_REGISTERED
  5192. //
  5193. // MessageText:
  5194. //
  5195. //  There are no more endpoints available from the endpoint mapper.
  5196. //
  5197. #define EPT_S_NOT_REGISTERED             1753L
  5198.  
  5199. //
  5200. // MessageId: RPC_S_NOTHING_TO_EXPORT
  5201. //
  5202. // MessageText:
  5203. //
  5204. //  No interfaces have been exported.
  5205. //
  5206. #define RPC_S_NOTHING_TO_EXPORT          1754L
  5207.  
  5208. //
  5209. // MessageId: RPC_S_INCOMPLETE_NAME
  5210. //
  5211. // MessageText:
  5212. //
  5213. //  The entry name is incomplete.
  5214. //
  5215. #define RPC_S_INCOMPLETE_NAME            1755L
  5216.  
  5217. //
  5218. // MessageId: RPC_S_INVALID_VERS_OPTION
  5219. //
  5220. // MessageText:
  5221. //
  5222. //  The version option is invalid.
  5223. //
  5224. #define RPC_S_INVALID_VERS_OPTION        1756L
  5225.  
  5226. //
  5227. // MessageId: RPC_S_NO_MORE_MEMBERS
  5228. //
  5229. // MessageText:
  5230. //
  5231. //  There are no more members.
  5232. //
  5233. #define RPC_S_NO_MORE_MEMBERS            1757L
  5234.  
  5235. //
  5236. // MessageId: RPC_S_NOT_ALL_OBJS_UNEXPORTED
  5237. //
  5238. // MessageText:
  5239. //
  5240. //  There is nothing to unexport.
  5241. //
  5242. #define RPC_S_NOT_ALL_OBJS_UNEXPORTED    1758L
  5243.  
  5244. //
  5245. // MessageId: RPC_S_INTERFACE_NOT_FOUND
  5246. //
  5247. // MessageText:
  5248. //
  5249. //  The interface was not found.
  5250. //
  5251. #define RPC_S_INTERFACE_NOT_FOUND        1759L
  5252.  
  5253. //
  5254. // MessageId: RPC_S_ENTRY_ALREADY_EXISTS
  5255. //
  5256. // MessageText:
  5257. //
  5258. //  The entry already exists.
  5259. //
  5260. #define RPC_S_ENTRY_ALREADY_EXISTS       1760L
  5261.  
  5262. //
  5263. // MessageId: RPC_S_ENTRY_NOT_FOUND
  5264. //
  5265. // MessageText:
  5266. //
  5267. //  The entry is not found.
  5268. //
  5269. #define RPC_S_ENTRY_NOT_FOUND            1761L
  5270.  
  5271. //
  5272. // MessageId: RPC_S_NAME_SERVICE_UNAVAILABLE
  5273. //
  5274. // MessageText:
  5275. //
  5276. //  The name service is unavailable.
  5277. //
  5278. #define RPC_S_NAME_SERVICE_UNAVAILABLE   1762L
  5279.  
  5280. //
  5281. // MessageId: RPC_S_INVALID_NAF_ID
  5282. //
  5283. // MessageText:
  5284. //
  5285. //  The network address family is invalid.
  5286. //
  5287. #define RPC_S_INVALID_NAF_ID             1763L
  5288.  
  5289. //
  5290. // MessageId: RPC_S_CANNOT_SUPPORT
  5291. //
  5292. // MessageText:
  5293. //
  5294. //  The requested operation is not supported.
  5295. //
  5296. #define RPC_S_CANNOT_SUPPORT             1764L
  5297.  
  5298. //
  5299. // MessageId: RPC_S_NO_CONTEXT_AVAILABLE
  5300. //
  5301. // MessageText:
  5302. //
  5303. //  No security context is available to allow impersonation.
  5304. //
  5305. #define RPC_S_NO_CONTEXT_AVAILABLE       1765L
  5306.  
  5307. //
  5308. // MessageId: RPC_S_INTERNAL_ERROR
  5309. //
  5310. // MessageText:
  5311. //
  5312. //  An internal error occurred in a remote procedure call (RPC).
  5313. //
  5314. #define RPC_S_INTERNAL_ERROR             1766L
  5315.  
  5316. //
  5317. // MessageId: RPC_S_ZERO_DIVIDE
  5318. //
  5319. // MessageText:
  5320. //
  5321. //  The RPC server attempted an integer division by zero.
  5322. //
  5323. #define RPC_S_ZERO_DIVIDE                1767L
  5324.  
  5325. //
  5326. // MessageId: RPC_S_ADDRESS_ERROR
  5327. //
  5328. // MessageText:
  5329. //
  5330. //  An addressing error occurred in the RPC server.
  5331. //
  5332. #define RPC_S_ADDRESS_ERROR              1768L
  5333.  
  5334. //
  5335. // MessageId: RPC_S_FP_DIV_ZERO
  5336. //
  5337. // MessageText:
  5338. //
  5339. //  A floating-point operation at the RPC server caused a division by zero.
  5340. //
  5341. #define RPC_S_FP_DIV_ZERO                1769L
  5342.  
  5343. //
  5344. // MessageId: RPC_S_FP_UNDERFLOW
  5345. //
  5346. // MessageText:
  5347. //
  5348. //  A floating-point underflow occurred at the RPC server.
  5349. //
  5350. #define RPC_S_FP_UNDERFLOW               1770L
  5351.  
  5352. //
  5353. // MessageId: RPC_S_FP_OVERFLOW
  5354. //
  5355. // MessageText:
  5356. //
  5357. //  A floating-point overflow occurred at the RPC server.
  5358. //
  5359. #define RPC_S_FP_OVERFLOW                1771L
  5360.  
  5361. //
  5362. // MessageId: RPC_X_NO_MORE_ENTRIES
  5363. //
  5364. // MessageText:
  5365. //
  5366. //  The list of RPC servers available for the binding of auto handles
  5367. //  has been exhausted.
  5368. //
  5369. #define RPC_X_NO_MORE_ENTRIES            1772L
  5370.  
  5371. //
  5372. // MessageId: RPC_X_SS_CHAR_TRANS_OPEN_FAIL
  5373. //
  5374. // MessageText:
  5375. //
  5376. //  Unable to open the character translation table file.
  5377. //
  5378. #define RPC_X_SS_CHAR_TRANS_OPEN_FAIL    1773L
  5379.  
  5380. //
  5381. // MessageId: RPC_X_SS_CHAR_TRANS_SHORT_FILE
  5382. //
  5383. // MessageText:
  5384. //
  5385. //  The file containing the character translation table has fewer than
  5386. //  512 bytes.
  5387. //
  5388. #define RPC_X_SS_CHAR_TRANS_SHORT_FILE   1774L
  5389.  
  5390. //
  5391. // MessageId: RPC_X_SS_IN_NULL_CONTEXT
  5392. //
  5393. // MessageText:
  5394. //
  5395. //  A null context handle was passed from the client to the host during
  5396. //  a remote procedure call.
  5397. //
  5398. #define RPC_X_SS_IN_NULL_CONTEXT         1775L
  5399.  
  5400. //
  5401. // MessageId: RPC_X_SS_CONTEXT_DAMAGED
  5402. //
  5403. // MessageText:
  5404. //
  5405. //  The context handle changed during a remote procedure call.
  5406. //
  5407. #define RPC_X_SS_CONTEXT_DAMAGED         1777L
  5408.  
  5409. //
  5410. // MessageId: RPC_X_SS_HANDLES_MISMATCH
  5411. //
  5412. // MessageText:
  5413. //
  5414. //  The binding handles passed to a remote procedure call do not match.
  5415. //
  5416. #define RPC_X_SS_HANDLES_MISMATCH        1778L
  5417.  
  5418. //
  5419. // MessageId: RPC_X_SS_CANNOT_GET_CALL_HANDLE
  5420. //
  5421. // MessageText:
  5422. //
  5423. //  The stub is unable to get the remote procedure call handle.
  5424. //
  5425. #define RPC_X_SS_CANNOT_GET_CALL_HANDLE  1779L
  5426.  
  5427. //
  5428. // MessageId: RPC_X_NULL_REF_POINTER
  5429. //
  5430. // MessageText:
  5431. //
  5432. //  A null reference pointer was passed to the stub.
  5433. //
  5434. #define RPC_X_NULL_REF_POINTER           1780L
  5435.  
  5436. //
  5437. // MessageId: RPC_X_ENUM_VALUE_OUT_OF_RANGE
  5438. //
  5439. // MessageText:
  5440. //
  5441. //  The enumeration value is out of range.
  5442. //
  5443. #define RPC_X_ENUM_VALUE_OUT_OF_RANGE    1781L
  5444.  
  5445. //
  5446. // MessageId: RPC_X_BYTE_COUNT_TOO_SMALL
  5447. //
  5448. // MessageText:
  5449. //
  5450. //  The byte count is too small.
  5451. //
  5452. #define RPC_X_BYTE_COUNT_TOO_SMALL       1782L
  5453.  
  5454. //
  5455. // MessageId: RPC_X_BAD_STUB_DATA
  5456. //
  5457. // MessageText:
  5458. //
  5459. //  The stub received bad data.
  5460. //
  5461. #define RPC_X_BAD_STUB_DATA              1783L
  5462.  
  5463. //
  5464. // MessageId: ERROR_INVALID_USER_BUFFER
  5465. //
  5466. // MessageText:
  5467. //
  5468. //  The supplied user buffer is not valid for the requested operation.
  5469. //
  5470. #define ERROR_INVALID_USER_BUFFER        1784L
  5471.  
  5472. //
  5473. // MessageId: ERROR_UNRECOGNIZED_MEDIA
  5474. //
  5475. // MessageText:
  5476. //
  5477. //  The disk media is not recognized.  It may not be formatted.
  5478. //
  5479. #define ERROR_UNRECOGNIZED_MEDIA         1785L
  5480.  
  5481. //
  5482. // MessageId: ERROR_NO_TRUST_LSA_SECRET
  5483. //
  5484. // MessageText:
  5485. //
  5486. //  The workstation does not have a trust secret.
  5487. //
  5488. #define ERROR_NO_TRUST_LSA_SECRET        1786L
  5489.  
  5490. //
  5491. // MessageId: ERROR_NO_TRUST_SAM_ACCOUNT
  5492. //
  5493. // MessageText:
  5494. //
  5495. //  The SAM database on the Windows NT Server does not have a computer
  5496. //  account for this workstation trust relationship.
  5497. //
  5498. #define ERROR_NO_TRUST_SAM_ACCOUNT       1787L
  5499.  
  5500. //
  5501. // MessageId: ERROR_TRUSTED_DOMAIN_FAILURE
  5502. //
  5503. // MessageText:
  5504. //
  5505. //  The trust relationship between the primary domain and the trusted
  5506. //  domain failed.
  5507. //
  5508. #define ERROR_TRUSTED_DOMAIN_FAILURE     1788L
  5509.  
  5510. //
  5511. // MessageId: ERROR_TRUSTED_RELATIONSHIP_FAILURE
  5512. //
  5513. // MessageText:
  5514. //
  5515. //  The trust relationship between this workstation and the primary
  5516. //  domain failed.
  5517. //
  5518. #define ERROR_TRUSTED_RELATIONSHIP_FAILURE 1789L
  5519.  
  5520. //
  5521. // MessageId: ERROR_TRUST_FAILURE
  5522. //
  5523. // MessageText:
  5524. //
  5525. //  The network logon failed.
  5526. //
  5527. #define ERROR_TRUST_FAILURE              1790L
  5528.  
  5529. //
  5530. // MessageId: RPC_S_CALL_IN_PROGRESS
  5531. //
  5532. // MessageText:
  5533. //
  5534. //  A remote procedure call is already in progress for this thread.
  5535. //
  5536. #define RPC_S_CALL_IN_PROGRESS           1791L
  5537.  
  5538. //
  5539. // MessageId: ERROR_NETLOGON_NOT_STARTED
  5540. //
  5541. // MessageText:
  5542. //
  5543. //  An attempt was made to logon, but the network logon service was not started.
  5544. //
  5545. #define ERROR_NETLOGON_NOT_STARTED       1792L
  5546.  
  5547. //
  5548. // MessageId: ERROR_ACCOUNT_EXPIRED
  5549. //
  5550. // MessageText:
  5551. //
  5552. //  The user's account has expired.
  5553. //
  5554. #define ERROR_ACCOUNT_EXPIRED            1793L
  5555.  
  5556. //
  5557. // MessageId: ERROR_REDIRECTOR_HAS_OPEN_HANDLES
  5558. //
  5559. // MessageText:
  5560. //
  5561. //  The redirector is in use and cannot be unloaded.
  5562. //
  5563. #define ERROR_REDIRECTOR_HAS_OPEN_HANDLES 1794L
  5564.  
  5565. //
  5566. // MessageId: ERROR_PRINTER_DRIVER_ALREADY_INSTALLED
  5567. //
  5568. // MessageText:
  5569. //
  5570. //  The specified printer driver is already installed.
  5571. //
  5572. #define ERROR_PRINTER_DRIVER_ALREADY_INSTALLED 1795L
  5573.  
  5574. //
  5575. // MessageId: ERROR_UNKNOWN_PORT
  5576. //
  5577. // MessageText:
  5578. //
  5579. //  The specified port is unknown.
  5580. //
  5581. #define ERROR_UNKNOWN_PORT               1796L
  5582.  
  5583. //
  5584. // MessageId: ERROR_UNKNOWN_PRINTER_DRIVER
  5585. //
  5586. // MessageText:
  5587. //
  5588. //  The printer driver is unknown.
  5589. //
  5590. #define ERROR_UNKNOWN_PRINTER_DRIVER     1797L
  5591.  
  5592. //
  5593. // MessageId: ERROR_UNKNOWN_PRINTPROCESSOR
  5594. //
  5595. // MessageText:
  5596. //
  5597. //  The print processor is unknown.
  5598. //
  5599. #define ERROR_UNKNOWN_PRINTPROCESSOR     1798L
  5600.  
  5601. //
  5602. // MessageId: ERROR_INVALID_SEPARATOR_FILE
  5603. //
  5604. // MessageText:
  5605. //
  5606. //  The specified separator file is invalid.
  5607. //
  5608. #define ERROR_INVALID_SEPARATOR_FILE     1799L
  5609.  
  5610. //
  5611. // MessageId: ERROR_INVALID_PRIORITY
  5612. //
  5613. // MessageText:
  5614. //
  5615. //  The specified priority is invalid.
  5616. //
  5617. #define ERROR_INVALID_PRIORITY           1800L
  5618.  
  5619. //
  5620. // MessageId: ERROR_INVALID_PRINTER_NAME
  5621. //
  5622. // MessageText:
  5623. //
  5624. //  The printer name is invalid.
  5625. //
  5626. #define ERROR_INVALID_PRINTER_NAME       1801L
  5627.  
  5628. //
  5629. // MessageId: ERROR_PRINTER_ALREADY_EXISTS
  5630. //
  5631. // MessageText:
  5632. //
  5633. //  The printer already exists.
  5634. //
  5635. #define ERROR_PRINTER_ALREADY_EXISTS     1802L
  5636.  
  5637. //
  5638. // MessageId: ERROR_INVALID_PRINTER_COMMAND
  5639. //
  5640. // MessageText:
  5641. //
  5642. //  The printer command is invalid.
  5643. //
  5644. #define ERROR_INVALID_PRINTER_COMMAND    1803L
  5645.  
  5646. //
  5647. // MessageId: ERROR_INVALID_DATATYPE
  5648. //
  5649. // MessageText:
  5650. //
  5651. //  The specified datatype is invalid.
  5652. //
  5653. #define ERROR_INVALID_DATATYPE           1804L
  5654.  
  5655. //
  5656. // MessageId: ERROR_INVALID_ENVIRONMENT
  5657. //
  5658. // MessageText:
  5659. //
  5660. //  The Environment specified is invalid.
  5661. //
  5662. #define ERROR_INVALID_ENVIRONMENT        1805L
  5663.  
  5664. //
  5665. // MessageId: RPC_S_NO_MORE_BINDINGS
  5666. //
  5667. // MessageText:
  5668. //
  5669. //  There are no more bindings.
  5670. //
  5671. #define RPC_S_NO_MORE_BINDINGS           1806L
  5672.  
  5673. //
  5674. // MessageId: ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
  5675. //
  5676. // MessageText:
  5677. //
  5678. //  The account used is an interdomain trust account.  Use your global user account or local user account to access this server.
  5679. //
  5680. #define ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT 1807L
  5681.  
  5682. //
  5683. // MessageId: ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT
  5684. //
  5685. // MessageText:
  5686. //
  5687. //  The account used is a Computer Account.  Use your global user account or local user account to access this server.
  5688. //
  5689. #define ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT 1808L
  5690.  
  5691. //
  5692. // MessageId: ERROR_NOLOGON_SERVER_TRUST_ACCOUNT
  5693. //
  5694. // MessageText:
  5695. //
  5696. //  The account used is an server trust account.  Use your global user account or local user account to access this server.
  5697. //
  5698. #define ERROR_NOLOGON_SERVER_TRUST_ACCOUNT 1809L
  5699.  
  5700. //
  5701. // MessageId: ERROR_DOMAIN_TRUST_INCONSISTENT
  5702. //
  5703. // MessageText:
  5704. //
  5705. //  The name or security ID (SID) of the domain specified is inconsistent
  5706. //  with the trust information for that domain.
  5707. //
  5708. #define ERROR_DOMAIN_TRUST_INCONSISTENT  1810L
  5709.  
  5710. //
  5711. // MessageId: ERROR_SERVER_HAS_OPEN_HANDLES
  5712. //
  5713. // MessageText:
  5714. //
  5715. //  The server is in use and cannot be unloaded.
  5716. //
  5717. #define ERROR_SERVER_HAS_OPEN_HANDLES    1811L
  5718.  
  5719. //
  5720. // MessageId: ERROR_RESOURCE_DATA_NOT_FOUND
  5721. //
  5722. // MessageText:
  5723. //
  5724. //  The specified image file did not contain a resource section.
  5725. //
  5726. #define ERROR_RESOURCE_DATA_NOT_FOUND    1812L
  5727.  
  5728. //
  5729. // MessageId: ERROR_RESOURCE_TYPE_NOT_FOUND
  5730. //
  5731. // MessageText:
  5732. //
  5733. //  The specified resource type can not be found in the image file.
  5734. //
  5735. #define ERROR_RESOURCE_TYPE_NOT_FOUND    1813L
  5736.  
  5737. //
  5738. // MessageId: ERROR_RESOURCE_NAME_NOT_FOUND
  5739. //
  5740. // MessageText:
  5741. //
  5742. //  The specified resource name can not be found in the image file.
  5743. //
  5744. #define ERROR_RESOURCE_NAME_NOT_FOUND    1814L
  5745.  
  5746. //
  5747. // MessageId: ERROR_RESOURCE_LANG_NOT_FOUND
  5748. //
  5749. // MessageText:
  5750. //
  5751. //  The specified resource language ID cannot be found in the image file.
  5752. //
  5753. #define ERROR_RESOURCE_LANG_NOT_FOUND    1815L
  5754.  
  5755. //
  5756. // MessageId: ERROR_NOT_ENOUGH_QUOTA
  5757. //
  5758. // MessageText:
  5759. //
  5760. //  Not enough quota is available to process this command.
  5761. //
  5762. #define ERROR_NOT_ENOUGH_QUOTA           1816L
  5763.  
  5764. //
  5765. // MessageId: RPC_S_NO_INTERFACES
  5766. //
  5767. // MessageText:
  5768. //
  5769. //  No interfaces have been registered.
  5770. //
  5771. #define RPC_S_NO_INTERFACES              1817L
  5772.  
  5773. //
  5774. // MessageId: RPC_S_CALL_CANCELLED
  5775. //
  5776. // MessageText:
  5777. //
  5778. //  The server was altered while processing this call.
  5779. //
  5780. #define RPC_S_CALL_CANCELLED             1818L
  5781.  
  5782. //
  5783. // MessageId: RPC_S_BINDING_INCOMPLETE
  5784. //
  5785. // MessageText:
  5786. //
  5787. //  The binding handle does not contain all required information.
  5788. //
  5789. #define RPC_S_BINDING_INCOMPLETE         1819L
  5790.  
  5791. //
  5792. // MessageId: RPC_S_COMM_FAILURE
  5793. //
  5794. // MessageText:
  5795. //
  5796. //  Communications failure.
  5797. //
  5798. #define RPC_S_COMM_FAILURE               1820L
  5799.  
  5800. //
  5801. // MessageId: RPC_S_UNSUPPORTED_AUTHN_LEVEL
  5802. //
  5803. // MessageText:
  5804. //
  5805. //  The requested authentication level is not supported.
  5806. //
  5807. #define RPC_S_UNSUPPORTED_AUTHN_LEVEL    1821L
  5808.  
  5809. //
  5810. // MessageId: RPC_S_NO_PRINC_NAME
  5811. //
  5812. // MessageText:
  5813. //
  5814. //  No principal name registered.
  5815. //
  5816. #define RPC_S_NO_PRINC_NAME              1822L
  5817.  
  5818. //
  5819. // MessageId: RPC_S_NOT_RPC_ERROR
  5820. //
  5821. // MessageText:
  5822. //
  5823. //  The error specified is not a valid Windows RPC error code.
  5824. //
  5825. #define RPC_S_NOT_RPC_ERROR              1823L
  5826.  
  5827. //
  5828. // MessageId: RPC_S_UUID_LOCAL_ONLY
  5829. //
  5830. // MessageText:
  5831. //
  5832. //  A UUID that is valid only on this computer has been allocated.
  5833. //
  5834. #define RPC_S_UUID_LOCAL_ONLY            1824L
  5835.  
  5836. //
  5837. // MessageId: RPC_S_SEC_PKG_ERROR
  5838. //
  5839. // MessageText:
  5840. //
  5841. //  A security package specific error occurred.
  5842. //
  5843. #define RPC_S_SEC_PKG_ERROR              1825L
  5844.  
  5845. //
  5846. // MessageId: RPC_S_NOT_CANCELLED
  5847. //
  5848. // MessageText:
  5849. //
  5850. //  Thread is not cancelled.
  5851. //
  5852. #define RPC_S_NOT_CANCELLED              1826L
  5853.  
  5854. //
  5855. // MessageId: RPC_X_INVALID_ES_ACTION
  5856. //
  5857. // MessageText:
  5858. //
  5859. //  Invalid operation on the encoding/decoding handle.
  5860. //
  5861. #define RPC_X_INVALID_ES_ACTION          1827L
  5862.  
  5863. //
  5864. // MessageId: RPC_X_WRONG_ES_VERSION
  5865. //
  5866. // MessageText:
  5867. //
  5868. //  Incompatible version of the serializing package.
  5869. //
  5870. #define RPC_X_WRONG_ES_VERSION           1828L
  5871.  
  5872. //
  5873. // MessageId: RPC_X_WRONG_STUB_VERSION
  5874. //
  5875. // MessageText:
  5876. //
  5877. //  Incompatible version of the RPC stub.
  5878. //
  5879. #define RPC_X_WRONG_STUB_VERSION         1829L
  5880.  
  5881. //
  5882. // MessageId: RPC_S_GROUP_MEMBER_NOT_FOUND
  5883. //
  5884. // MessageText:
  5885. //
  5886. //  The group member was not found.
  5887. //
  5888. #define RPC_S_GROUP_MEMBER_NOT_FOUND     1898L
  5889.  
  5890. //
  5891. // MessageId: EPT_S_CANT_CREATE
  5892. //
  5893. // MessageText:
  5894. //
  5895. //  The endpoint mapper database could not be created.
  5896. //
  5897. #define EPT_S_CANT_CREATE                1899L
  5898.  
  5899. //
  5900. // MessageId: RPC_S_INVALID_OBJECT
  5901. //
  5902. // MessageText:
  5903. //
  5904. //  The object universal unique identifier (UUID) is the nil UUID.
  5905. //
  5906. #define RPC_S_INVALID_OBJECT             1900L
  5907.  
  5908. //
  5909. // MessageId: ERROR_INVALID_TIME
  5910. //
  5911. // MessageText:
  5912. //
  5913. //  The specified time is invalid.
  5914. //
  5915. #define ERROR_INVALID_TIME               1901L
  5916.  
  5917. //
  5918. // MessageId: ERROR_INVALID_FORM_NAME
  5919. //
  5920. // MessageText:
  5921. //
  5922. //  The specified Form name is invalid.
  5923. //
  5924. #define ERROR_INVALID_FORM_NAME          1902L
  5925.  
  5926. //
  5927. // MessageId: ERROR_INVALID_FORM_SIZE
  5928. //
  5929. // MessageText:
  5930. //
  5931. //  The specified Form size is invalid
  5932. //
  5933. #define ERROR_INVALID_FORM_SIZE          1903L
  5934.  
  5935. //
  5936. // MessageId: ERROR_ALREADY_WAITING
  5937. //
  5938. // MessageText:
  5939. //
  5940. //  The specified Printer handle is already being waited on
  5941. //
  5942. #define ERROR_ALREADY_WAITING            1904L
  5943.  
  5944. //
  5945. // MessageId: ERROR_PRINTER_DELETED
  5946. //
  5947. // MessageText:
  5948. //
  5949. //  The specified Printer has been deleted
  5950. //
  5951. #define ERROR_PRINTER_DELETED            1905L
  5952.  
  5953. //
  5954. // MessageId: ERROR_INVALID_PRINTER_STATE
  5955. //
  5956. // MessageText:
  5957. //
  5958. //  The state of the Printer is invalid
  5959. //
  5960. #define ERROR_INVALID_PRINTER_STATE      1906L
  5961.  
  5962. //
  5963. // MessageId: ERROR_PASSWORD_MUST_CHANGE
  5964. //
  5965. // MessageText:
  5966. //
  5967. //  The user must change his password before he logs on the first time.
  5968. //
  5969. #define ERROR_PASSWORD_MUST_CHANGE       1907L
  5970.  
  5971. //
  5972. // MessageId: ERROR_DOMAIN_CONTROLLER_NOT_FOUND
  5973. //
  5974. // MessageText:
  5975. //
  5976. //  Could not find the domain controller for this domain.
  5977. //
  5978. #define ERROR_DOMAIN_CONTROLLER_NOT_FOUND 1908L
  5979.  
  5980. //
  5981. // MessageId: ERROR_ACCOUNT_LOCKED_OUT
  5982. //
  5983. // MessageText:
  5984. //
  5985. //  The referenced account is currently locked out and may not be logged on to.
  5986. //
  5987. #define ERROR_ACCOUNT_LOCKED_OUT         1909L
  5988.  
  5989. //
  5990. // MessageId: ERROR_NO_BROWSER_SERVERS_FOUND
  5991. //
  5992. // MessageText:
  5993. //
  5994. //  The list of servers for this workgroup is not currently available
  5995. //
  5996. #define ERROR_NO_BROWSER_SERVERS_FOUND   6118L
  5997.  
  5998.  
  5999.  
  6000.  
  6001. ///////////////////////////
  6002. //                       //
  6003. //   OpenGL Error Code   //
  6004. //                       //
  6005. ///////////////////////////
  6006.  
  6007.  
  6008. //
  6009. // MessageId: ERROR_INVALID_PIXEL_FORMAT
  6010. //
  6011. // MessageText:
  6012. //
  6013. //  The pixel format is invalid.
  6014. //
  6015. #define ERROR_INVALID_PIXEL_FORMAT       2000L
  6016.  
  6017. //
  6018. // MessageId: ERROR_BAD_DRIVER
  6019. //
  6020. // MessageText:
  6021. //
  6022. //  The specified driver is invalid.
  6023. //
  6024. #define ERROR_BAD_DRIVER                 2001L
  6025.  
  6026. //
  6027. // MessageId: ERROR_INVALID_WINDOW_STYLE
  6028. //
  6029. // MessageText:
  6030. //
  6031. //  The window style or class attribute is invalid for this operation.
  6032. //
  6033. #define ERROR_INVALID_WINDOW_STYLE       2002L
  6034.  
  6035. //
  6036. // MessageId: ERROR_METAFILE_NOT_SUPPORTED
  6037. //
  6038. // MessageText:
  6039. //
  6040. //  The requested metafile operation is not supported.
  6041. //
  6042. #define ERROR_METAFILE_NOT_SUPPORTED     2003L
  6043.  
  6044. //
  6045. // MessageId: ERROR_TRANSFORM_NOT_SUPPORTED
  6046. //
  6047. // MessageText:
  6048. //
  6049. //  The requested transformation operation is not supported.
  6050. //
  6051. #define ERROR_TRANSFORM_NOT_SUPPORTED    2004L
  6052.  
  6053. //
  6054. // MessageId: ERROR_CLIPPING_NOT_SUPPORTED
  6055. //
  6056. // MessageText:
  6057. //
  6058. //  The requested clipping operation is not supported.
  6059. //
  6060. #define ERROR_CLIPPING_NOT_SUPPORTED     2005L
  6061.  
  6062. // End of OpenGL error codes
  6063.  
  6064.  
  6065.  
  6066. ////////////////////////////////////
  6067. //                                //
  6068. //     Win32 Spooler Error Codes  //
  6069. //                                //
  6070. ////////////////////////////////////
  6071. //
  6072. // MessageId: ERROR_UNKNOWN_PRINT_MONITOR
  6073. //
  6074. // MessageText:
  6075. //
  6076. //  The specified print monitor is unknown.
  6077. //
  6078. #define ERROR_UNKNOWN_PRINT_MONITOR      3000L
  6079.  
  6080. //
  6081. // MessageId: ERROR_PRINTER_DRIVER_IN_USE
  6082. //
  6083. // MessageText:
  6084. //
  6085. //  The specified printer driver is currently in use.
  6086. //
  6087. #define ERROR_PRINTER_DRIVER_IN_USE      3001L
  6088.  
  6089. //
  6090. // MessageId: ERROR_SPOOL_FILE_NOT_FOUND
  6091. //
  6092. // MessageText:
  6093. //
  6094. //  The spool file was not found.
  6095. //
  6096. #define ERROR_SPOOL_FILE_NOT_FOUND       3002L
  6097.  
  6098. //
  6099. // MessageId: ERROR_SPL_NO_STARTDOC
  6100. //
  6101. // MessageText:
  6102. //
  6103. //  A StartDocPrinter call was not issued.
  6104. //
  6105. #define ERROR_SPL_NO_STARTDOC            3003L
  6106.  
  6107. //
  6108. // MessageId: ERROR_SPL_NO_ADDJOB
  6109. //
  6110. // MessageText:
  6111. //
  6112. //  An AddJob call was not issued.
  6113. //
  6114. #define ERROR_SPL_NO_ADDJOB              3004L
  6115.  
  6116. //
  6117. // MessageId: ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED
  6118. //
  6119. // MessageText:
  6120. //
  6121. //  The specified print processor has already been installed.
  6122. //
  6123. #define ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED 3005L
  6124.  
  6125. //
  6126. // MessageId: ERROR_PRINT_MONITOR_ALREADY_INSTALLED
  6127. //
  6128. // MessageText:
  6129. //
  6130. //  The specified print monitor has already been installed.
  6131. //
  6132. #define ERROR_PRINT_MONITOR_ALREADY_INSTALLED 3006L
  6133.  
  6134. ////////////////////////////////////
  6135. //                                //
  6136. //     Wins Error Codes           //
  6137. //                                //
  6138. ////////////////////////////////////
  6139. //
  6140. // MessageId: ERROR_WINS_INTERNAL
  6141. //
  6142. // MessageText:
  6143. //
  6144. //  WINS encountered an error while processing the command.
  6145. //
  6146. #define ERROR_WINS_INTERNAL              4000L
  6147.  
  6148. //
  6149. // MessageId: ERROR_CAN_NOT_DEL_LOCAL_WINS
  6150. //
  6151. // MessageText:
  6152. //
  6153. //  The local WINS can not be deleted.
  6154. //
  6155. #define ERROR_CAN_NOT_DEL_LOCAL_WINS     4001L
  6156.  
  6157. //
  6158. // MessageId: ERROR_STATIC_INIT
  6159. //
  6160. // MessageText:
  6161. //
  6162. //  The importation from the file failed.
  6163. //
  6164. #define ERROR_STATIC_INIT                4002L
  6165.  
  6166. //
  6167. // MessageId: ERROR_INC_BACKUP
  6168. //
  6169. // MessageText:
  6170. //
  6171. //  The backup Failed.  Was a full backup done before ?
  6172. //
  6173. #define ERROR_INC_BACKUP                 4003L
  6174.  
  6175. //
  6176. // MessageId: ERROR_FULL_BACKUP
  6177. //
  6178. // MessageText:
  6179. //
  6180. //  The backup Failed.  Check the directory that you are backing the database to.
  6181. //
  6182. #define ERROR_FULL_BACKUP                4004L
  6183.  
  6184. //
  6185. // MessageId: ERROR_REC_NON_EXISTENT
  6186. //
  6187. // MessageText:
  6188. //
  6189. //  The name does not exist in the WINS database.
  6190. //
  6191. #define ERROR_REC_NON_EXISTENT           4005L
  6192.  
  6193. //
  6194. // MessageId: ERROR_RPL_NOT_ALLOWED
  6195. //
  6196. // MessageText:
  6197. //
  6198. //  Replication with a non-configured partner is not allowed.
  6199. //
  6200. #define ERROR_RPL_NOT_ALLOWED            4006L
  6201.  
  6202. ////////////////////////////////////
  6203. //                                //
  6204. //     OLE Error Codes            //
  6205. //                                //
  6206. ////////////////////////////////////
  6207.  
  6208. //
  6209. // OLE error definitions and values
  6210. //
  6211. // The return value of OLE APIs and methods is an HRESULT.
  6212. // This is not a handle to anything, but is merely a 32-bit value
  6213. // with several fields encoded in the value.  The parts of an 
  6214. // HRESULT are shown below.  
  6215. //
  6216. // Many of the macros and functions below were orginally defined to 
  6217. // operate on SCODEs.  SCODEs are no longer used.  The macros are 
  6218. // still present for compatibility and easy porting of Win16 code.
  6219. // Newly written code should use the HRESULT macros and functions.
  6220. //
  6221.  
  6222. //
  6223. //  HRESULTs are 32 bit values layed out as follows:
  6224. //
  6225. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  6226. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  6227. //  +-+-+-+-+-+---------------------+-------------------------------+
  6228. //  |S|R|C|N|r|    Facility         |               Code            |
  6229. //  +-+-+-+-+-+---------------------+-------------------------------+
  6230. //
  6231. //  where
  6232. //
  6233. //      S - Severity - indicates success/fail
  6234. //
  6235. //          0 - Success
  6236. //          1 - Fail (COERROR)
  6237. //
  6238. //      R - reserved portion of the facility code, corresponds to NT's
  6239. //              second severity bit.
  6240. //
  6241. //      C - reserved portion of the facility code, corresponds to NT's
  6242. //              C field.
  6243. //
  6244. //      N - reserved portion of the facility code. Used to indicate a
  6245. //              mapped NT status value.
  6246. //
  6247. //      r - reserved portion of the facility code. Reserved for internal
  6248. //              use. Used to indicate HRESULT values that are not status
  6249. //              values, but are instead message ids for display strings.
  6250. //
  6251. //      Facility - is the facility code
  6252. //
  6253. //      Code - is the facility's status code
  6254. //
  6255.  
  6256. //
  6257. // Severity values
  6258. //
  6259.  
  6260. #define SEVERITY_SUCCESS    0
  6261. #define SEVERITY_ERROR      1
  6262.  
  6263.  
  6264. //
  6265. // Generic test for success on any status value (non-negative numbers
  6266. // indicate success).
  6267. //
  6268.  
  6269. #define SUCCEEDED(Status) ((long)(Status) >= 0)
  6270.  
  6271. //
  6272. // and the inverse
  6273. //
  6274.  
  6275. #define FAILED(Status) ((long)(Status)<0)
  6276.  
  6277.  
  6278. //
  6279. // Generic test for error on any status value.
  6280. //
  6281.  
  6282. #define IS_ERROR(Status) ((unsigned long)(Status) >> 31 == SEVERITY_ERROR)
  6283.  
  6284. //
  6285. // Return the code
  6286. //
  6287.  
  6288. #define HRESULT_CODE(hr)    ((hr) & 0xFFFF)
  6289. #define SCODE_CODE(sc)      ((sc) & 0xFFFF)
  6290.  
  6291. //
  6292. //  Return the facility
  6293. //
  6294.  
  6295. #define HRESULT_FACILITY(hr)  (((hr) >> 16) & 0x1fff)
  6296. #define SCODE_FACILITY(sc)    (((sc) >> 16) & 0x1fff)
  6297.  
  6298. //
  6299. //  Return the severity
  6300. //
  6301.  
  6302. #define HRESULT_SEVERITY(hr)  (((hr) >> 31) & 0x1)
  6303. #define SCODE_SEVERITY(sc)    (((sc) >> 31) & 0x1)
  6304.  
  6305. //
  6306. // Create an HRESULT value from component pieces
  6307. //
  6308.  
  6309. #define MAKE_HRESULT(sev,fac,code) \
  6310.     ((HRESULT) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
  6311. #define MAKE_SCODE(sev,fac,code) \
  6312.     ((SCODE) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) | ((unsigned long)(code))) )
  6313.  
  6314.  
  6315. //
  6316. // Map a WIN32 error value into a HRESULT
  6317. // Note: This assumes that WIN32 errors fall in the range -32k to 32k.
  6318. //
  6319. // Define bits here so macros are guaranteed to work
  6320.  
  6321. #define FACILITY_NT_BIT                 0x10000000
  6322. #define HRESULT_FROM_WIN32(x)   (x ? ((HRESULT) (((x) & 0x0000FFFF) | (FACILITY_WIN32 << 16) | 0x80000000)) : 0 )
  6323.  
  6324. //
  6325. // Map an NT status value into a HRESULT
  6326. //
  6327.  
  6328. #define HRESULT_FROM_NT(x)      ((HRESULT) ((x) | FACILITY_NT_BIT))
  6329.  
  6330.  
  6331. // ****** OBSOLETE functions
  6332.  
  6333. // HRESULT functions
  6334. // As noted above, these functions are obsolete and should not be used.
  6335.  
  6336.  
  6337. // Extract the SCODE from a HRESULT
  6338.  
  6339. #define GetScode(hr) ((SCODE) (hr))
  6340.  
  6341. // Convert an SCODE into an HRESULT.
  6342.  
  6343. #define ResultFromScode(sc) ((HRESULT) (sc))
  6344.  
  6345.  
  6346. // PropagateResult is a noop
  6347. #define PropagateResult(hrPrevious, scBase) ((HRESULT) scBase)
  6348.  
  6349.  
  6350. // ****** End of OBSOLETE functions.
  6351.  
  6352.  
  6353. // ---------------------- HRESULT value definitions -----------------
  6354. //
  6355. // HRESULT definitions
  6356. //
  6357.  
  6358. //
  6359. // Error definitions follow
  6360. //
  6361.  
  6362. //
  6363. // Codes 0x4000-0x40ff are reserved for OLE
  6364. //
  6365. //
  6366. // Error codes
  6367. //
  6368. //
  6369. // MessageId: E_UNEXPECTED
  6370. //
  6371. // MessageText:
  6372. //
  6373. //  Unexpected failure
  6374. //
  6375. #define E_UNEXPECTED                     0x8000FFFFL
  6376.  
  6377. #ifdef _WIN32
  6378. //
  6379. // MessageId: E_NOTIMPL
  6380. //
  6381. // MessageText:
  6382. //
  6383. //  Not implemented
  6384. //
  6385. #define E_NOTIMPL                        0x80004001L
  6386.  
  6387. //
  6388. // MessageId: E_OUTOFMEMORY
  6389. //
  6390. // MessageText:
  6391. //
  6392. //  Ran out of memory
  6393. //
  6394. #define E_OUTOFMEMORY                    0x8007000EL
  6395.  
  6396. //
  6397. // MessageId: E_INVALIDARG
  6398. //
  6399. // MessageText:
  6400. //
  6401. //  One or more arguments are invalid
  6402. //
  6403. #define E_INVALIDARG                     0x80070057L
  6404.  
  6405. //
  6406. // MessageId: E_NOINTERFACE
  6407. //
  6408. // MessageText:
  6409. //
  6410. //  No such interface supported
  6411. //
  6412. #define E_NOINTERFACE                    0x80004002L
  6413.  
  6414. //
  6415. // MessageId: E_POINTER
  6416. //
  6417. // MessageText:
  6418. //
  6419. //  Invalid pointer
  6420. //
  6421. #define E_POINTER                        0x80004003L
  6422.  
  6423. //
  6424. // MessageId: E_HANDLE
  6425. //
  6426. // MessageText:
  6427. //
  6428. //  Invalid handle
  6429. //
  6430. #define E_HANDLE                         0x80070006L
  6431.  
  6432. //
  6433. // MessageId: E_ABORT
  6434. //
  6435. // MessageText:
  6436. //
  6437. //  Operation aborted
  6438. //
  6439. #define E_ABORT                          0x80004004L
  6440.  
  6441. //
  6442. // MessageId: E_FAIL
  6443. //
  6444. // MessageText:
  6445. //
  6446. //  Unspecified error
  6447. //
  6448. #define E_FAIL                           0x80004005L
  6449.  
  6450. //
  6451. // MessageId: E_ACCESSDENIED
  6452. //
  6453. // MessageText:
  6454. //
  6455. //  General access denied error
  6456. //
  6457. #define E_ACCESSDENIED                   0x80070005L
  6458.  
  6459. #else
  6460. //
  6461. // MessageId: E_NOTIMPL
  6462. //
  6463. // MessageText:
  6464. //
  6465. //  Not implemented
  6466. //
  6467. #define E_NOTIMPL                        0x80000001L
  6468.  
  6469. //
  6470. // MessageId: E_OUTOFMEMORY
  6471. //
  6472. // MessageText:
  6473. //
  6474. //  Ran out of memory
  6475. //
  6476. #define E_OUTOFMEMORY                    0x80000002L
  6477.  
  6478. //
  6479. // MessageId: E_INVALIDARG
  6480. //
  6481. // MessageText:
  6482. //
  6483. //  One or more arguments are invalid
  6484. //
  6485. #define E_INVALIDARG                     0x80000003L
  6486.  
  6487. //
  6488. // MessageId: E_NOINTERFACE
  6489. //
  6490. // MessageText:
  6491. //
  6492. //  No such interface supported
  6493. //
  6494. #define E_NOINTERFACE                    0x80000004L
  6495.  
  6496. //
  6497. // MessageId: E_POINTER
  6498. //
  6499. // MessageText:
  6500. //
  6501. //  Invalid pointer
  6502. //
  6503. #define E_POINTER                        0x80000005L
  6504.  
  6505. //
  6506. // MessageId: E_HANDLE
  6507. //
  6508. // MessageText:
  6509. //
  6510. //  Invalid handle
  6511. //
  6512. #define E_HANDLE                         0x80000006L
  6513.  
  6514. //
  6515. // MessageId: E_ABORT
  6516. //
  6517. // MessageText:
  6518. //
  6519. //  Operation aborted
  6520. //
  6521. #define E_ABORT                          0x80000007L
  6522.  
  6523. //
  6524. // MessageId: E_FAIL
  6525. //
  6526. // MessageText:
  6527. //
  6528. //  Unspecified error
  6529. //
  6530. #define E_FAIL                           0x80000008L
  6531.  
  6532. //
  6533. // MessageId: E_ACCESSDENIED
  6534. //
  6535. // MessageText:
  6536. //
  6537. //  General access denied error
  6538. //
  6539. #define E_ACCESSDENIED                   0x80000009L
  6540.  
  6541. #endif //_WIN32
  6542. //
  6543. // MessageId: CO_E_INIT_TLS
  6544. //
  6545. // MessageText:
  6546. //
  6547. //  Thread local storage failure
  6548. //
  6549. #define CO_E_INIT_TLS                    0x80004006L
  6550.  
  6551. //
  6552. // MessageId: CO_E_INIT_SHARED_ALLOCATOR
  6553. //
  6554. // MessageText:
  6555. //
  6556. //  Get shared memory allocator failure
  6557. //
  6558. #define CO_E_INIT_SHARED_ALLOCATOR       0x80004007L
  6559.  
  6560. //
  6561. // MessageId: CO_E_INIT_MEMORY_ALLOCATOR
  6562. //
  6563. // MessageText:
  6564. //
  6565. //  Get memory allocator failure
  6566. //
  6567. #define CO_E_INIT_MEMORY_ALLOCATOR       0x80004008L
  6568.  
  6569. //
  6570. // MessageId: CO_E_INIT_CLASS_CACHE
  6571. //
  6572. // MessageText:
  6573. //
  6574. //  Unable to initialize class cache
  6575. //
  6576. #define CO_E_INIT_CLASS_CACHE            0x80004009L
  6577.  
  6578. //
  6579. // MessageId: CO_E_INIT_RPC_CHANNEL
  6580. //
  6581. // MessageText:
  6582. //
  6583. //  Unable to initialize RPC services
  6584. //
  6585. #define CO_E_INIT_RPC_CHANNEL            0x8000400AL
  6586.  
  6587. //
  6588. // MessageId: CO_E_INIT_TLS_SET_CHANNEL_CONTROL
  6589. //
  6590. // MessageText:
  6591. //
  6592. //  Cannot set thread local storage channel control
  6593. //
  6594. #define CO_E_INIT_TLS_SET_CHANNEL_CONTROL 0x8000400BL
  6595.  
  6596. //
  6597. // MessageId: CO_E_INIT_TLS_CHANNEL_CONTROL
  6598. //
  6599. // MessageText:
  6600. //
  6601. //  Could not allocate thread local storage channel control
  6602. //
  6603. #define CO_E_INIT_TLS_CHANNEL_CONTROL    0x8000400CL
  6604.  
  6605. //
  6606. // MessageId: CO_E_INIT_UNACCEPTED_USER_ALLOCATOR
  6607. //
  6608. // MessageText:
  6609. //
  6610. //  The user supplied memory allocator is unacceptable
  6611. //
  6612. #define CO_E_INIT_UNACCEPTED_USER_ALLOCATOR 0x8000400DL
  6613.  
  6614. //
  6615. // MessageId: CO_E_INIT_SCM_MUTEX_EXISTS
  6616. //
  6617. // MessageText:
  6618. //
  6619. //  The OLE service mutex already exists
  6620. //
  6621. #define CO_E_INIT_SCM_MUTEX_EXISTS       0x8000400EL
  6622.  
  6623. //
  6624. // MessageId: CO_E_INIT_SCM_FILE_MAPPING_EXISTS
  6625. //
  6626. // MessageText:
  6627. //
  6628. //  The OLE service file mapping already exists
  6629. //
  6630. #define CO_E_INIT_SCM_FILE_MAPPING_EXISTS 0x8000400FL
  6631.  
  6632. //
  6633. // MessageId: CO_E_INIT_SCM_MAP_VIEW_OF_FILE
  6634. //
  6635. // MessageText:
  6636. //
  6637. //  Unable to map view of file for OLE service
  6638. //
  6639. #define CO_E_INIT_SCM_MAP_VIEW_OF_FILE   0x80004010L
  6640.  
  6641. //
  6642. // MessageId: CO_E_INIT_SCM_EXEC_FAILURE
  6643. //
  6644. // MessageText:
  6645. //
  6646. //  Failure attempting to launch OLE service
  6647. //
  6648. #define CO_E_INIT_SCM_EXEC_FAILURE       0x80004011L
  6649.  
  6650. //
  6651. // MessageId: CO_E_INIT_ONLY_SINGLE_THREADED
  6652. //
  6653. // MessageText:
  6654. //
  6655. //  There was an attempt to call CoInitialize a second time while single threaded
  6656. //
  6657. #define CO_E_INIT_ONLY_SINGLE_THREADED   0x80004012L
  6658.  
  6659.  
  6660. //
  6661. // Success codes
  6662. //
  6663. #define S_OK                                   (0x00000000L)
  6664. #define S_FALSE                                (0x00000001L)
  6665.  
  6666. // ******************
  6667. // FACILITY_ITF
  6668. // ******************
  6669.  
  6670. //
  6671. // Codes 0x0-0x01ff are reserved for the OLE group of
  6672. // interfaces.
  6673. //
  6674.  
  6675.  
  6676. //
  6677. // Generic OLE errors that may be returned by many inerfaces
  6678. //
  6679.  
  6680. #define OLE_E_FIRST 0x80040000L
  6681. #define OLE_E_LAST  0x800400FFL
  6682. #define OLE_S_FIRST 0x00040000L
  6683. #define OLE_S_LAST  0x000400FFL
  6684.  
  6685. //
  6686. // Old OLE errors
  6687. //
  6688. //
  6689. // MessageId: OLE_E_OLEVERB
  6690. //
  6691. // MessageText:
  6692. //
  6693. //  Invalid OLEVERB structure
  6694. //
  6695. #define OLE_E_OLEVERB                    0x80040000L
  6696.  
  6697. //
  6698. // MessageId: OLE_E_ADVF
  6699. //
  6700. // MessageText:
  6701. //
  6702. //  Invalid advise flags
  6703. //
  6704. #define OLE_E_ADVF                       0x80040001L
  6705.  
  6706. //
  6707. // MessageId: OLE_E_ENUM_NOMORE
  6708. //
  6709. // MessageText:
  6710. //
  6711. //  Can't enumerate any more, because the associated data is missing
  6712. //
  6713. #define OLE_E_ENUM_NOMORE                0x80040002L
  6714.  
  6715. //
  6716. // MessageId: OLE_E_ADVISENOTSUPPORTED
  6717. //
  6718. // MessageText:
  6719. //
  6720. //  This implementation doesn't take advises
  6721. //
  6722. #define OLE_E_ADVISENOTSUPPORTED         0x80040003L
  6723.  
  6724. //
  6725. // MessageId: OLE_E_NOCONNECTION
  6726. //
  6727. // MessageText:
  6728. //
  6729. //  There is no connection for this connection ID
  6730. //
  6731. #define OLE_E_NOCONNECTION               0x80040004L
  6732.  
  6733. //
  6734. // MessageId: OLE_E_NOTRUNNING
  6735. //
  6736. // MessageText:
  6737. //
  6738. //  Need to run the object to perform this operation
  6739. //
  6740. #define OLE_E_NOTRUNNING                 0x80040005L
  6741.  
  6742. //
  6743. // MessageId: OLE_E_NOCACHE
  6744. //
  6745. // MessageText:
  6746. //
  6747. //  There is no cache to operate on
  6748. //
  6749. #define OLE_E_NOCACHE                    0x80040006L
  6750.  
  6751. //
  6752. // MessageId: OLE_E_BLANK
  6753. //
  6754. // MessageText:
  6755. //
  6756. //  Uninitialized object
  6757. //
  6758. #define OLE_E_BLANK                      0x80040007L
  6759.  
  6760. //
  6761. // MessageId: OLE_E_CLASSDIFF
  6762. //
  6763. // MessageText:
  6764. //
  6765. //  Linked object's source class has changed
  6766. //
  6767. #define OLE_E_CLASSDIFF                  0x80040008L
  6768.  
  6769. //
  6770. // MessageId: OLE_E_CANT_GETMONIKER
  6771. //
  6772. // MessageText:
  6773. //
  6774. //  Not able to get the moniker of the object
  6775. //
  6776. #define OLE_E_CANT_GETMONIKER            0x80040009L
  6777.  
  6778. //
  6779. // MessageId: OLE_E_CANT_BINDTOSOURCE
  6780. //
  6781. // MessageText:
  6782. //
  6783. //  Not able to bind to the source
  6784. //
  6785. #define OLE_E_CANT_BINDTOSOURCE          0x8004000AL
  6786.  
  6787. //
  6788. // MessageId: OLE_E_STATIC
  6789. //
  6790. // MessageText:
  6791. //
  6792. //  Object is static; operation not allowed
  6793. //
  6794. #define OLE_E_STATIC                     0x8004000BL
  6795.  
  6796. //
  6797. // MessageId: OLE_E_PROMPTSAVECANCELLED
  6798. //
  6799. // MessageText:
  6800. //
  6801. //  User cancelled out of save dialog
  6802. //
  6803. #define OLE_E_PROMPTSAVECANCELLED        0x8004000CL
  6804.  
  6805. //
  6806. // MessageId: OLE_E_INVALIDRECT
  6807. //
  6808. // MessageText:
  6809. //
  6810. //  Invalid rectangle
  6811. //
  6812. #define OLE_E_INVALIDRECT                0x8004000DL
  6813.  
  6814. //
  6815. // MessageId: OLE_E_WRONGCOMPOBJ
  6816. //
  6817. // MessageText:
  6818. //
  6819. //  compobj.dll is too old for the ole2.dll initialized
  6820. //
  6821. #define OLE_E_WRONGCOMPOBJ               0x8004000EL
  6822.  
  6823. //
  6824. // MessageId: OLE_E_INVALIDHWND
  6825. //
  6826. // MessageText:
  6827. //
  6828. //  Invalid window handle
  6829. //
  6830. #define OLE_E_INVALIDHWND                0x8004000FL
  6831.  
  6832. //
  6833. // MessageId: OLE_E_NOT_INPLACEACTIVE
  6834. //
  6835. // MessageText:
  6836. //
  6837. //  Object is not in any of the inplace active states
  6838. //
  6839. #define OLE_E_NOT_INPLACEACTIVE          0x80040010L
  6840.  
  6841. //
  6842. // MessageId: OLE_E_CANTCONVERT
  6843. //
  6844. // MessageText:
  6845. //
  6846. //  Not able to convert object
  6847. //
  6848. #define OLE_E_CANTCONVERT                0x80040011L
  6849.  
  6850. //
  6851. // MessageId: OLE_E_NOSTORAGE
  6852. //
  6853. // MessageText:
  6854. //
  6855. //  Not able to perform the operation because object is not given storage yet
  6856. //  
  6857. //
  6858. #define OLE_E_NOSTORAGE                  0x80040012L
  6859.  
  6860. //
  6861. // MessageId: DV_E_FORMATETC
  6862. //
  6863. // MessageText:
  6864. //
  6865. //  Invalid FORMATETC structure
  6866. //
  6867. #define DV_E_FORMATETC                   0x80040064L
  6868.  
  6869. //
  6870. // MessageId: DV_E_DVTARGETDEVICE
  6871. //
  6872. // MessageText:
  6873. //
  6874. //  Invalid DVTARGETDEVICE structure
  6875. //
  6876. #define DV_E_DVTARGETDEVICE              0x80040065L
  6877.  
  6878. //
  6879. // MessageId: DV_E_STGMEDIUM
  6880. //
  6881. // MessageText:
  6882. //
  6883. //  Invalid STDGMEDIUM structure
  6884. //
  6885. #define DV_E_STGMEDIUM                   0x80040066L
  6886.  
  6887. //
  6888. // MessageId: DV_E_STATDATA
  6889. //
  6890. // MessageText:
  6891. //
  6892. //  Invalid STATDATA structure
  6893. //
  6894. #define DV_E_STATDATA                    0x80040067L
  6895.  
  6896. //
  6897. // MessageId: DV_E_LINDEX
  6898. //
  6899. // MessageText:
  6900. //
  6901. //  Invalid lindex
  6902. //
  6903. #define DV_E_LINDEX                      0x80040068L
  6904.  
  6905. //
  6906. // MessageId: DV_E_TYMED
  6907. //
  6908. // MessageText:
  6909. //
  6910. //  Invalid tymed
  6911. //
  6912. #define DV_E_TYMED                       0x80040069L
  6913.  
  6914. //
  6915. // MessageId: DV_E_CLIPFORMAT
  6916. //
  6917. // MessageText:
  6918. //
  6919. //  Invalid clipboard format
  6920. //
  6921. #define DV_E_CLIPFORMAT                  0x8004006AL
  6922.  
  6923. //
  6924. // MessageId: DV_E_DVASPECT
  6925. //
  6926. // MessageText:
  6927. //
  6928. //  Invalid aspect(s)
  6929. //
  6930. #define DV_E_DVASPECT                    0x8004006BL
  6931.  
  6932. //
  6933. // MessageId: DV_E_DVTARGETDEVICE_SIZE
  6934. //
  6935. // MessageText:
  6936. //
  6937. //  tdSize parameter of the DVTARGETDEVICE structure is invalid
  6938. //
  6939. #define DV_E_DVTARGETDEVICE_SIZE         0x8004006CL
  6940.  
  6941. //
  6942. // MessageId: DV_E_NOIVIEWOBJECT
  6943. //
  6944. // MessageText:
  6945. //
  6946. //  Object doesn't support IViewObject interface
  6947. //
  6948. #define DV_E_NOIVIEWOBJECT               0x8004006DL
  6949.  
  6950. #define DRAGDROP_E_FIRST 0x80040100L
  6951. #define DRAGDROP_E_LAST  0x8004010FL
  6952. #define DRAGDROP_S_FIRST 0x00040100L
  6953. #define DRAGDROP_S_LAST  0x0004010FL
  6954. //
  6955. // MessageId: DRAGDROP_E_NOTREGISTERED
  6956. //
  6957. // MessageText:
  6958. //
  6959. //  Trying to revoke a drop target that has not been registered
  6960. //
  6961. #define DRAGDROP_E_NOTREGISTERED         0x80040100L
  6962.  
  6963. //
  6964. // MessageId: DRAGDROP_E_ALREADYREGISTERED
  6965. //
  6966. // MessageText:
  6967. //
  6968. //  This window has already been registered as a drop target
  6969. //
  6970. #define DRAGDROP_E_ALREADYREGISTERED     0x80040101L
  6971.  
  6972. //
  6973. // MessageId: DRAGDROP_E_INVALIDHWND
  6974. //
  6975. // MessageText:
  6976. //
  6977. //  Invalid window handle
  6978. //
  6979. #define DRAGDROP_E_INVALIDHWND           0x80040102L
  6980.  
  6981. #define CLASSFACTORY_E_FIRST  0x80040110L
  6982. #define CLASSFACTORY_E_LAST   0x8004011FL
  6983. #define CLASSFACTORY_S_FIRST  0x00040110L
  6984. #define CLASSFACTORY_S_LAST   0x0004011FL
  6985. //
  6986. // MessageId: CLASS_E_NOAGGREGATION
  6987. //
  6988. // MessageText:
  6989. //
  6990. //  Class does not support aggregation (or class object is remote)
  6991. //
  6992. #define CLASS_E_NOAGGREGATION            0x80040110L
  6993.  
  6994. //
  6995. // MessageId: CLASS_E_CLASSNOTAVAILABLE
  6996. //
  6997. // MessageText:
  6998. //
  6999. //  ClassFactory cannot supply requested class
  7000. //
  7001. #define CLASS_E_CLASSNOTAVAILABLE        0x80040111L
  7002.  
  7003. #define MARSHAL_E_FIRST  0x80040120L
  7004. #define MARSHAL_E_LAST   0x8004012FL
  7005. #define MARSHAL_S_FIRST  0x00040120L
  7006. #define MARSHAL_S_LAST   0x0004012FL
  7007. #define DATA_E_FIRST     0x80040130L
  7008. #define DATA_E_LAST      0x8004013FL
  7009. #define DATA_S_FIRST     0x00040130L
  7010. #define DATA_S_LAST      0x0004013FL
  7011. #define VIEW_E_FIRST     0x80040140L
  7012. #define VIEW_E_LAST      0x8004014FL
  7013. #define VIEW_S_FIRST     0x00040140L
  7014. #define VIEW_S_LAST      0x0004014FL
  7015. //
  7016. // MessageId: VIEW_E_DRAW
  7017. //
  7018. // MessageText:
  7019. //
  7020. //  Error drawing view
  7021. //
  7022. #define VIEW_E_DRAW                      0x80040140L
  7023.  
  7024. #define REGDB_E_FIRST     0x80040150L
  7025. #define REGDB_E_LAST      0x8004015FL
  7026. #define REGDB_S_FIRST     0x00040150L
  7027. #define REGDB_S_LAST      0x0004015FL
  7028. //
  7029. // MessageId: REGDB_E_READREGDB
  7030. //
  7031. // MessageText:
  7032. //
  7033. //  Could not read key from registry
  7034. //
  7035. #define REGDB_E_READREGDB                0x80040150L
  7036.  
  7037. //
  7038. // MessageId: REGDB_E_WRITEREGDB
  7039. //
  7040. // MessageText:
  7041. //
  7042. //  Could not write key to registry
  7043. //
  7044. #define REGDB_E_WRITEREGDB               0x80040151L
  7045.  
  7046. //
  7047. // MessageId: REGDB_E_KEYMISSING
  7048. //
  7049. // MessageText:
  7050. //
  7051. //  Could not find the key in the registry
  7052. //
  7053. #define REGDB_E_KEYMISSING               0x80040152L
  7054.  
  7055. //
  7056. // MessageId: REGDB_E_INVALIDVALUE
  7057. //
  7058. // MessageText:
  7059. //
  7060. //  Invalid value for registry
  7061. //
  7062. #define REGDB_E_INVALIDVALUE             0x80040153L
  7063.  
  7064. //
  7065. // MessageId: REGDB_E_CLASSNOTREG
  7066. //
  7067. // MessageText:
  7068. //
  7069. //  Class not registered
  7070. //
  7071. #define REGDB_E_CLASSNOTREG              0x80040154L
  7072.  
  7073. //
  7074. // MessageId: REGDB_E_IIDNOTREG
  7075. //
  7076. // MessageText:
  7077. //
  7078. //  Interface not registered
  7079. //
  7080. #define REGDB_E_IIDNOTREG                0x80040155L
  7081.  
  7082. #define CACHE_E_FIRST     0x80040170L
  7083. #define CACHE_E_LAST      0x8004017FL
  7084. #define CACHE_S_FIRST     0x00040170L
  7085. #define CACHE_S_LAST      0x0004017FL
  7086. //
  7087. // MessageId: CACHE_E_NOCACHE_UPDATED
  7088. //
  7089. // MessageText:
  7090. //
  7091. //  Cache not updated
  7092. //
  7093. #define CACHE_E_NOCACHE_UPDATED          0x80040170L
  7094.  
  7095. #define OLEOBJ_E_FIRST     0x80040180L
  7096. #define OLEOBJ_E_LAST      0x8004018FL
  7097. #define OLEOBJ_S_FIRST     0x00040180L
  7098. #define OLEOBJ_S_LAST      0x0004018FL
  7099. //
  7100. // MessageId: OLEOBJ_E_NOVERBS
  7101. //
  7102. // MessageText:
  7103. //
  7104. //  No verbs for OLE object
  7105. //
  7106. #define OLEOBJ_E_NOVERBS                 0x80040180L
  7107.  
  7108. //
  7109. // MessageId: OLEOBJ_E_INVALIDVERB
  7110. //
  7111. // MessageText:
  7112. //
  7113. //  Invalid verb for OLE object
  7114. //
  7115. #define OLEOBJ_E_INVALIDVERB             0x80040181L
  7116.  
  7117. #define CLIENTSITE_E_FIRST     0x80040190L
  7118. #define CLIENTSITE_E_LAST      0x8004019FL
  7119. #define CLIENTSITE_S_FIRST     0x00040190L
  7120. #define CLIENTSITE_S_LAST      0x0004019FL
  7121. //
  7122. // MessageId: INPLACE_E_NOTUNDOABLE
  7123. //
  7124. // MessageText:
  7125. //
  7126. //  Undo is not available
  7127. //
  7128. #define INPLACE_E_NOTUNDOABLE            0x800401A0L
  7129.  
  7130. //
  7131. // MessageId: INPLACE_E_NOTOOLSPACE
  7132. //
  7133. // MessageText:
  7134. //
  7135. //  Space for tools is not available
  7136. //
  7137. #define INPLACE_E_NOTOOLSPACE            0x800401A1L
  7138.  
  7139. #define INPLACE_E_FIRST     0x800401A0L
  7140. #define INPLACE_E_LAST      0x800401AFL
  7141. #define INPLACE_S_FIRST     0x000401A0L
  7142. #define INPLACE_S_LAST      0x000401AFL
  7143. #define ENUM_E_FIRST        0x800401B0L
  7144. #define ENUM_E_LAST         0x800401BFL
  7145. #define ENUM_S_FIRST        0x000401B0L
  7146. #define ENUM_S_LAST         0x000401BFL
  7147. #define CONVERT10_E_FIRST        0x800401C0L
  7148. #define CONVERT10_E_LAST         0x800401CFL
  7149. #define CONVERT10_S_FIRST        0x000401C0L
  7150. #define CONVERT10_S_LAST         0x000401CFL
  7151. //
  7152. // MessageId: CONVERT10_E_OLESTREAM_GET
  7153. //
  7154. // MessageText:
  7155. //
  7156. //  OLESTREAM Get method failed
  7157. //
  7158. #define CONVERT10_E_OLESTREAM_GET        0x800401C0L
  7159.  
  7160. //
  7161. // MessageId: CONVERT10_E_OLESTREAM_PUT
  7162. //
  7163. // MessageText:
  7164. //
  7165. //  OLESTREAM Put method failed
  7166. //
  7167. #define CONVERT10_E_OLESTREAM_PUT        0x800401C1L
  7168.  
  7169. //
  7170. // MessageId: CONVERT10_E_OLESTREAM_FMT
  7171. //
  7172. // MessageText:
  7173. //
  7174. //  Contents of the OLESTREAM not in correct format
  7175. //
  7176. #define CONVERT10_E_OLESTREAM_FMT        0x800401C2L
  7177.  
  7178. //
  7179. // MessageId: CONVERT10_E_OLESTREAM_BITMAP_TO_DIB
  7180. //
  7181. // MessageText:
  7182. //
  7183. //  There was an error in a Windows GDI call while converting the bitmap to a DIB
  7184. //
  7185. #define CONVERT10_E_OLESTREAM_BITMAP_TO_DIB 0x800401C3L
  7186.  
  7187. //
  7188. // MessageId: CONVERT10_E_STG_FMT
  7189. //
  7190. // MessageText:
  7191. //
  7192. //  Contents of the IStorage not in correct format
  7193. //
  7194. #define CONVERT10_E_STG_FMT              0x800401C4L
  7195.  
  7196. //
  7197. // MessageId: CONVERT10_E_STG_NO_STD_STREAM
  7198. //
  7199. // MessageText:
  7200. //
  7201. //  Contents of IStorage is missing one of the standard streams
  7202. //
  7203. #define CONVERT10_E_STG_NO_STD_STREAM    0x800401C5L
  7204.  
  7205. //
  7206. // MessageId: CONVERT10_E_STG_DIB_TO_BITMAP
  7207. //
  7208. // MessageText:
  7209. //
  7210. //  There was an error in a Windows GDI call while converting the DIB to a bitmap.
  7211. //  
  7212. //
  7213. #define CONVERT10_E_STG_DIB_TO_BITMAP    0x800401C6L
  7214.  
  7215. #define CLIPBRD_E_FIRST        0x800401D0L
  7216. #define CLIPBRD_E_LAST         0x800401DFL
  7217. #define CLIPBRD_S_FIRST        0x000401D0L
  7218. #define CLIPBRD_S_LAST         0x000401DFL
  7219. //
  7220. // MessageId: CLIPBRD_E_CANT_OPEN
  7221. //
  7222. // MessageText:
  7223. //
  7224. //  OpenClipboard Failed
  7225. //
  7226. #define CLIPBRD_E_CANT_OPEN              0x800401D0L
  7227.  
  7228. //
  7229. // MessageId: CLIPBRD_E_CANT_EMPTY
  7230. //
  7231. // MessageText:
  7232. //
  7233. //  EmptyClipboard Failed
  7234. //
  7235. #define CLIPBRD_E_CANT_EMPTY             0x800401D1L
  7236.  
  7237. //
  7238. // MessageId: CLIPBRD_E_CANT_SET
  7239. //
  7240. // MessageText:
  7241. //
  7242. //  SetClipboard Failed
  7243. //
  7244. #define CLIPBRD_E_CANT_SET               0x800401D2L
  7245.  
  7246. //
  7247. // MessageId: CLIPBRD_E_BAD_DATA
  7248. //
  7249. // MessageText:
  7250. //
  7251. //  Data on clipboard is invalid
  7252. //
  7253. #define CLIPBRD_E_BAD_DATA               0x800401D3L
  7254.  
  7255. //
  7256. // MessageId: CLIPBRD_E_CANT_CLOSE
  7257. //
  7258. // MessageText:
  7259. //
  7260. //  CloseClipboard Failed
  7261. //
  7262. #define CLIPBRD_E_CANT_CLOSE             0x800401D4L
  7263.  
  7264. #define MK_E_FIRST        0x800401E0L
  7265. #define MK_E_LAST         0x800401EFL
  7266. #define MK_S_FIRST        0x000401E0L
  7267. #define MK_S_LAST         0x000401EFL
  7268. //
  7269. // MessageId: MK_E_CONNECTMANUALLY
  7270. //
  7271. // MessageText:
  7272. //
  7273. //  Moniker needs to be connected manually
  7274. //
  7275. #define MK_E_CONNECTMANUALLY             0x800401E0L
  7276.  
  7277. //
  7278. // MessageId: MK_E_EXCEEDEDDEADLINE
  7279. //
  7280. // MessageText:
  7281. //
  7282. //  Operation exceeded deadline
  7283. //
  7284. #define MK_E_EXCEEDEDDEADLINE            0x800401E1L
  7285.  
  7286. //
  7287. // MessageId: MK_E_NEEDGENERIC
  7288. //
  7289. // MessageText:
  7290. //
  7291. //  Moniker needs to be generic
  7292. //
  7293. #define MK_E_NEEDGENERIC                 0x800401E2L
  7294.  
  7295. //
  7296. // MessageId: MK_E_UNAVAILABLE
  7297. //
  7298. // MessageText:
  7299. //
  7300. //  Operation unavailable
  7301. //
  7302. #define MK_E_UNAVAILABLE                 0x800401E3L
  7303.  
  7304. //
  7305. // MessageId: MK_E_SYNTAX
  7306. //
  7307. // MessageText:
  7308. //
  7309. //  Invalid syntax
  7310. //
  7311. #define MK_E_SYNTAX                      0x800401E4L
  7312.  
  7313. //
  7314. // MessageId: MK_E_NOOBJECT
  7315. //
  7316. // MessageText:
  7317. //
  7318. //  No object for moniker
  7319. //
  7320. #define MK_E_NOOBJECT                    0x800401E5L
  7321.  
  7322. //
  7323. // MessageId: MK_E_INVALIDEXTENSION
  7324. //
  7325. // MessageText:
  7326. //
  7327. //  Bad extension for file
  7328. //
  7329. #define MK_E_INVALIDEXTENSION            0x800401E6L
  7330.  
  7331. //
  7332. // MessageId: MK_E_INTERMEDIATEINTERFACENOTSUPPORTED
  7333. //
  7334. // MessageText:
  7335. //
  7336. //  Intermediate operation failed
  7337. //
  7338. #define MK_E_INTERMEDIATEINTERFACENOTSUPPORTED 0x800401E7L
  7339.  
  7340. //
  7341. // MessageId: MK_E_NOTBINDABLE
  7342. //
  7343. // MessageText:
  7344. //
  7345. //  Moniker is not bindable
  7346. //
  7347. #define MK_E_NOTBINDABLE                 0x800401E8L
  7348.  
  7349. //
  7350. // MessageId: MK_E_NOTBOUND
  7351. //
  7352. // MessageText:
  7353. //
  7354. //  Moniker is not bound
  7355. //
  7356. #define MK_E_NOTBOUND                    0x800401E9L
  7357.  
  7358. //
  7359. // MessageId: MK_E_CANTOPENFILE
  7360. //
  7361. // MessageText:
  7362. //
  7363. //  Moniker cannot open file
  7364. //
  7365. #define MK_E_CANTOPENFILE                0x800401EAL
  7366.  
  7367. //
  7368. // MessageId: MK_E_MUSTBOTHERUSER
  7369. //
  7370. // MessageText:
  7371. //
  7372. //  User input required for operation to succeed
  7373. //
  7374. #define MK_E_MUSTBOTHERUSER              0x800401EBL
  7375.  
  7376. //
  7377. // MessageId: MK_E_NOINVERSE
  7378. //
  7379. // MessageText:
  7380. //
  7381. //  Moniker class has no inverse
  7382. //
  7383. #define MK_E_NOINVERSE                   0x800401ECL
  7384.  
  7385. //
  7386. // MessageId: MK_E_NOSTORAGE
  7387. //
  7388. // MessageText:
  7389. //
  7390. //  Moniker does not refer to storage
  7391. //
  7392. #define MK_E_NOSTORAGE                   0x800401EDL
  7393.  
  7394. //
  7395. // MessageId: MK_E_NOPREFIX
  7396. //
  7397. // MessageText:
  7398. //
  7399. //  No common prefix
  7400. //
  7401. #define MK_E_NOPREFIX                    0x800401EEL
  7402.  
  7403. //
  7404. // MessageId: MK_E_ENUMERATION_FAILED
  7405. //
  7406. // MessageText:
  7407. //
  7408. //  Moniker could not be enumerated
  7409. //
  7410. #define MK_E_ENUMERATION_FAILED          0x800401EFL
  7411.  
  7412. #define CO_E_FIRST        0x800401F0L
  7413. #define CO_E_LAST         0x800401FFL
  7414. #define CO_S_FIRST        0x000401F0L
  7415. #define CO_S_LAST         0x000401FFL
  7416. //
  7417. // MessageId: CO_E_NOTINITIALIZED
  7418. //
  7419. // MessageText:
  7420. //
  7421. //  CoInitialize has not been called.
  7422. //
  7423. #define CO_E_NOTINITIALIZED              0x800401F0L
  7424.  
  7425. //
  7426. // MessageId: CO_E_ALREADYINITIALIZED
  7427. //
  7428. // MessageText:
  7429. //
  7430. //  CoInitialize has already been called.
  7431. //
  7432. #define CO_E_ALREADYINITIALIZED          0x800401F1L
  7433.  
  7434. //
  7435. // MessageId: CO_E_CANTDETERMINECLASS
  7436. //
  7437. // MessageText:
  7438. //
  7439. //  Class of object cannot be determined
  7440. //
  7441. #define CO_E_CANTDETERMINECLASS          0x800401F2L
  7442.  
  7443. //
  7444. // MessageId: CO_E_CLASSSTRING
  7445. //
  7446. // MessageText:
  7447. //
  7448. //  Invalid class string
  7449. //
  7450. #define CO_E_CLASSSTRING                 0x800401F3L
  7451.  
  7452. //
  7453. // MessageId: CO_E_IIDSTRING
  7454. //
  7455. // MessageText:
  7456. //
  7457. //  Invalid interface string
  7458. //
  7459. #define CO_E_IIDSTRING                   0x800401F4L
  7460.  
  7461. //
  7462. // MessageId: CO_E_APPNOTFOUND
  7463. //
  7464. // MessageText:
  7465. //
  7466. //  Application not found
  7467. //
  7468. #define CO_E_APPNOTFOUND                 0x800401F5L
  7469.  
  7470. //
  7471. // MessageId: CO_E_APPSINGLEUSE
  7472. //
  7473. // MessageText:
  7474. //
  7475. //  Application cannot be run more than once
  7476. //
  7477. #define CO_E_APPSINGLEUSE                0x800401F6L
  7478.  
  7479. //
  7480. // MessageId: CO_E_ERRORINAPP
  7481. //
  7482. // MessageText:
  7483. //
  7484. //  Some error in application program
  7485. //
  7486. #define CO_E_ERRORINAPP                  0x800401F7L
  7487.  
  7488. //
  7489. // MessageId: CO_E_DLLNOTFOUND
  7490. //
  7491. // MessageText:
  7492. //
  7493. //  DLL for class not found
  7494. //
  7495. #define CO_E_DLLNOTFOUND                 0x800401F8L
  7496.  
  7497. //
  7498. // MessageId: CO_E_ERRORINDLL
  7499. //
  7500. // MessageText:
  7501. //
  7502. //  Error in the DLL
  7503. //
  7504. #define CO_E_ERRORINDLL                  0x800401F9L
  7505.  
  7506. //
  7507. // MessageId: CO_E_WRONGOSFORAPP
  7508. //
  7509. // MessageText:
  7510. //
  7511. //  Wrong OS or OS version for application
  7512. //
  7513. #define CO_E_WRONGOSFORAPP               0x800401FAL
  7514.  
  7515. //
  7516. // MessageId: CO_E_OBJNOTREG
  7517. //
  7518. // MessageText:
  7519. //
  7520. //  Object is not registered
  7521. //
  7522. #define CO_E_OBJNOTREG                   0x800401FBL
  7523.  
  7524. //
  7525. // MessageId: CO_E_OBJISREG
  7526. //
  7527. // MessageText:
  7528. //
  7529. //  Object is already registered
  7530. //
  7531. #define CO_E_OBJISREG                    0x800401FCL
  7532.  
  7533. //
  7534. // MessageId: CO_E_OBJNOTCONNECTED
  7535. //
  7536. // MessageText:
  7537. //
  7538. //  Object is not connected to server
  7539. //
  7540. #define CO_E_OBJNOTCONNECTED             0x800401FDL
  7541.  
  7542. //
  7543. // MessageId: CO_E_APPDIDNTREG
  7544. //
  7545. // MessageText:
  7546. //
  7547. //  Application was launched but it didn't register a class factory
  7548. //
  7549. #define CO_E_APPDIDNTREG                 0x800401FEL
  7550.  
  7551. //
  7552. // MessageId: CO_E_RELEASED
  7553. //
  7554. // MessageText:
  7555. //
  7556. //  Object has been released
  7557. //
  7558. #define CO_E_RELEASED                    0x800401FFL
  7559.  
  7560. //
  7561. // Old OLE Success Codes
  7562. //
  7563. //
  7564. // MessageId: OLE_S_USEREG
  7565. //
  7566. // MessageText:
  7567. //
  7568. //  Use the registry database to provide the requested information
  7569. //
  7570. #define OLE_S_USEREG                     0x00040000L
  7571.  
  7572. //
  7573. // MessageId: OLE_S_STATIC
  7574. //
  7575. // MessageText:
  7576. //
  7577. //  Success, but static
  7578. //
  7579. #define OLE_S_STATIC                     0x00040001L
  7580.  
  7581. //
  7582. // MessageId: OLE_S_MAC_CLIPFORMAT
  7583. //
  7584. // MessageText:
  7585. //
  7586. //  Macintosh clipboard format
  7587. //
  7588. #define OLE_S_MAC_CLIPFORMAT             0x00040002L
  7589.  
  7590. //
  7591. // MessageId: DRAGDROP_S_DROP
  7592. //
  7593. // MessageText:
  7594. //
  7595. //  Successful drop took place
  7596. //
  7597. #define DRAGDROP_S_DROP                  0x00040100L
  7598.  
  7599. //
  7600. // MessageId: DRAGDROP_S_CANCEL
  7601. //
  7602. // MessageText:
  7603. //
  7604. //  Drag-drop operation canceled
  7605. //
  7606. #define DRAGDROP_S_CANCEL                0x00040101L
  7607.  
  7608. //
  7609. // MessageId: DRAGDROP_S_USEDEFAULTCURSORS
  7610. //
  7611. // MessageText:
  7612. //
  7613. //  Use the default cursor
  7614. //
  7615. #define DRAGDROP_S_USEDEFAULTCURSORS     0x00040102L
  7616.  
  7617. //
  7618. // MessageId: DATA_S_SAMEFORMATETC
  7619. //
  7620. // MessageText:
  7621. //
  7622. //  Data has same FORMATETC
  7623. //
  7624. #define DATA_S_SAMEFORMATETC             0x00040130L
  7625.  
  7626. //
  7627. // MessageId: VIEW_S_ALREADY_FROZEN
  7628. //
  7629. // MessageText:
  7630. //
  7631. //  View is already frozen
  7632. //
  7633. #define VIEW_S_ALREADY_FROZEN            0x00040140L
  7634.  
  7635. //
  7636. // MessageId: CACHE_S_FORMATETC_NOTSUPPORTED
  7637. //
  7638. // MessageText:
  7639. //
  7640. //  FORMATETC not supported
  7641. //
  7642. #define CACHE_S_FORMATETC_NOTSUPPORTED   0x00040170L
  7643.  
  7644. //
  7645. // MessageId: CACHE_S_SAMECACHE
  7646. //
  7647. // MessageText:
  7648. //
  7649. //  Same cache
  7650. //
  7651. #define CACHE_S_SAMECACHE                0x00040171L
  7652.  
  7653. //
  7654. // MessageId: CACHE_S_SOMECACHES_NOTUPDATED
  7655. //
  7656. // MessageText:
  7657. //
  7658. //  Some cache(s) not updated
  7659. //
  7660. #define CACHE_S_SOMECACHES_NOTUPDATED    0x00040172L
  7661.  
  7662. //
  7663. // MessageId: OLEOBJ_S_INVALIDVERB
  7664. //
  7665. // MessageText:
  7666. //
  7667. //  Invalid verb for OLE object
  7668. //
  7669. #define OLEOBJ_S_INVALIDVERB             0x00040180L
  7670.  
  7671. //
  7672. // MessageId: OLEOBJ_S_CANNOT_DOVERB_NOW
  7673. //
  7674. // MessageText:
  7675. //
  7676. //  Verb number is valid but verb cannot be done now
  7677. //
  7678. #define OLEOBJ_S_CANNOT_DOVERB_NOW       0x00040181L
  7679.  
  7680. //
  7681. // MessageId: OLEOBJ_S_INVALIDHWND
  7682. //
  7683. // MessageText:
  7684. //
  7685. //  Invalid window handle passed
  7686. //
  7687. #define OLEOBJ_S_INVALIDHWND             0x00040182L
  7688.  
  7689. //
  7690. // MessageId: INPLACE_S_TRUNCATED
  7691. //
  7692. // MessageText:
  7693. //
  7694. //  Message is too long; some of it had to be truncated before displaying
  7695. //
  7696. #define INPLACE_S_TRUNCATED              0x000401A0L
  7697.  
  7698. //
  7699. // MessageId: CONVERT10_S_NO_PRESENTATION
  7700. //
  7701. // MessageText:
  7702. //
  7703. //  Unable to convert OLESTREAM to IStorage
  7704. //
  7705. #define CONVERT10_S_NO_PRESENTATION      0x000401C0L
  7706.  
  7707. //
  7708. // MessageId: MK_S_REDUCED_TO_SELF
  7709. //
  7710. // MessageText:
  7711. //
  7712. //  Moniker reduced to itself
  7713. //
  7714. #define MK_S_REDUCED_TO_SELF             0x000401E2L
  7715.  
  7716. //
  7717. // MessageId: MK_S_ME
  7718. //
  7719. // MessageText:
  7720. //
  7721. //  Common prefix is this moniker
  7722. //
  7723. #define MK_S_ME                          0x000401E4L
  7724.  
  7725. //
  7726. // MessageId: MK_S_HIM
  7727. //
  7728. // MessageText:
  7729. //
  7730. //  Common prefix is input moniker
  7731. //
  7732. #define MK_S_HIM                         0x000401E5L
  7733.  
  7734. //
  7735. // MessageId: MK_S_US
  7736. //
  7737. // MessageText:
  7738. //
  7739. //  Common prefix is both monikers
  7740. //
  7741. #define MK_S_US                          0x000401E6L
  7742.  
  7743. //
  7744. // MessageId: MK_S_MONIKERALREADYREGISTERED
  7745. //
  7746. // MessageText:
  7747. //
  7748. //  Moniker is already registered in running object table
  7749. //
  7750. #define MK_S_MONIKERALREADYREGISTERED    0x000401E7L
  7751.  
  7752. // ******************
  7753. // FACILITY_WINDOWS
  7754. // ******************
  7755. //
  7756. // Codes 0x0-0x01ff are reserved for the OLE group of
  7757. // interfaces.
  7758. //
  7759. //
  7760. // MessageId: CO_E_CLASS_CREATE_FAILED
  7761. //
  7762. // MessageText:
  7763. //
  7764. //  Attempt to create a class object failed
  7765. //
  7766. #define CO_E_CLASS_CREATE_FAILED         0x80080001L
  7767.  
  7768. //
  7769. // MessageId: CO_E_SCM_ERROR
  7770. //
  7771. // MessageText:
  7772. //
  7773. //  OLE service could not bind object
  7774. //
  7775. #define CO_E_SCM_ERROR                   0x80080002L
  7776.  
  7777. //
  7778. // MessageId: CO_E_SCM_RPC_FAILURE
  7779. //
  7780. // MessageText:
  7781. //
  7782. //  RPC communication failed with OLE service
  7783. //
  7784. #define CO_E_SCM_RPC_FAILURE             0x80080003L
  7785.  
  7786. //
  7787. // MessageId: CO_E_BAD_PATH
  7788. //
  7789. // MessageText:
  7790. //
  7791. //  Bad path to object
  7792. //
  7793. #define CO_E_BAD_PATH                    0x80080004L
  7794.  
  7795. //
  7796. // MessageId: CO_E_SERVER_EXEC_FAILURE
  7797. //
  7798. // MessageText:
  7799. //
  7800. //  Server execution failed
  7801. //
  7802. #define CO_E_SERVER_EXEC_FAILURE         0x80080005L
  7803.  
  7804. //
  7805. // MessageId: CO_E_OBJSRV_RPC_FAILURE
  7806. //
  7807. // MessageText:
  7808. //
  7809. //  OLE service could not communicate with the object server
  7810. //
  7811. #define CO_E_OBJSRV_RPC_FAILURE          0x80080006L
  7812.  
  7813. //
  7814. // MessageId: MK_E_NO_NORMALIZED
  7815. //
  7816. // MessageText:
  7817. //
  7818. //  Moniker path could not be normalized
  7819. //
  7820. #define MK_E_NO_NORMALIZED               0x80080007L
  7821.  
  7822. //
  7823. // MessageId: CO_E_SERVER_STOPPING
  7824. //
  7825. // MessageText:
  7826. //
  7827. //  Object server is stopping when OLE service contacts it
  7828. //
  7829. #define CO_E_SERVER_STOPPING             0x80080008L
  7830.  
  7831. //
  7832. // MessageId: MEM_E_INVALID_ROOT
  7833. //
  7834. // MessageText:
  7835. //
  7836. //  An invalid root block pointer was specified
  7837. //
  7838. #define MEM_E_INVALID_ROOT               0x80080009L
  7839.  
  7840. //
  7841. // MessageId: MEM_E_INVALID_LINK
  7842. //
  7843. // MessageText:
  7844. //
  7845. //  An allocation chain contained an invalid link pointer
  7846. //
  7847. #define MEM_E_INVALID_LINK               0x80080010L
  7848.  
  7849. //
  7850. // MessageId: MEM_E_INVALID_SIZE
  7851. //
  7852. // MessageText:
  7853. //
  7854. //  The requested allocation size was too large
  7855. //
  7856. #define MEM_E_INVALID_SIZE               0x80080011L
  7857.  
  7858. // ******************
  7859. // FACILITY_DISPATCH
  7860. // ******************
  7861. //
  7862. // MessageId: DISP_E_UNKNOWNINTERFACE
  7863. //
  7864. // MessageText:
  7865. //
  7866. //  Unknown interface.
  7867. //
  7868. #define DISP_E_UNKNOWNINTERFACE          0x80020001L
  7869.  
  7870. //
  7871. // MessageId: DISP_E_MEMBERNOTFOUND
  7872. //
  7873. // MessageText:
  7874. //
  7875. //  Member not found.
  7876. //
  7877. #define DISP_E_MEMBERNOTFOUND            0x80020003L
  7878.  
  7879. //
  7880. // MessageId: DISP_E_PARAMNOTFOUND
  7881. //
  7882. // MessageText:
  7883. //
  7884. //  Parameter not found.
  7885. //
  7886. #define DISP_E_PARAMNOTFOUND             0x80020004L
  7887.  
  7888. //
  7889. // MessageId: DISP_E_TYPEMISMATCH
  7890. //
  7891. // MessageText:
  7892. //
  7893. //  Type mismatch.
  7894. //
  7895. #define DISP_E_TYPEMISMATCH              0x80020005L
  7896.  
  7897. //
  7898. // MessageId: DISP_E_UNKNOWNNAME
  7899. //
  7900. // MessageText:
  7901. //
  7902. //  Unknown name.
  7903. //
  7904. #define DISP_E_UNKNOWNNAME               0x80020006L
  7905.  
  7906. //
  7907. // MessageId: DISP_E_NONAMEDARGS
  7908. //
  7909. // MessageText:
  7910. //
  7911. //  No named arguments.
  7912. //
  7913. #define DISP_E_NONAMEDARGS               0x80020007L
  7914.  
  7915. //
  7916. // MessageId: DISP_E_BADVARTYPE
  7917. //
  7918. // MessageText:
  7919. //
  7920. //  Bad variable type.
  7921. //
  7922. #define DISP_E_BADVARTYPE                0x80020008L
  7923.  
  7924. //
  7925. // MessageId: DISP_E_EXCEPTION
  7926. //
  7927. // MessageText:
  7928. //
  7929. //  Exception occurred.
  7930. //
  7931. #define DISP_E_EXCEPTION                 0x80020009L
  7932.  
  7933. //
  7934. // MessageId: DISP_E_OVERFLOW
  7935. //
  7936. // MessageText:
  7937. //
  7938. //  Out of present range.
  7939. //
  7940. #define DISP_E_OVERFLOW                  0x8002000AL
  7941.  
  7942. //
  7943. // MessageId: DISP_E_BADINDEX
  7944. //
  7945. // MessageText:
  7946. //
  7947. //  Invalid index.
  7948. //
  7949. #define DISP_E_BADINDEX                  0x8002000BL
  7950.  
  7951. //
  7952. // MessageId: DISP_E_UNKNOWNLCID
  7953. //
  7954. // MessageText:
  7955. //
  7956. //  Unknown language.
  7957. //
  7958. #define DISP_E_UNKNOWNLCID               0x8002000CL
  7959.  
  7960. //
  7961. // MessageId: DISP_E_ARRAYISLOCKED
  7962. //
  7963. // MessageText:
  7964. //
  7965. //  Memory is locked.
  7966. //
  7967. #define DISP_E_ARRAYISLOCKED             0x8002000DL
  7968.  
  7969. //
  7970. // MessageId: DISP_E_BADPARAMCOUNT
  7971. //
  7972. // MessageText:
  7973. //
  7974. //  Invalid number of parameters.
  7975. //
  7976. #define DISP_E_BADPARAMCOUNT             0x8002000EL
  7977.  
  7978. //
  7979. // MessageId: DISP_E_PARAMNOTOPTIONAL
  7980. //
  7981. // MessageText:
  7982. //
  7983. //  Parameter not optional.
  7984. //
  7985. #define DISP_E_PARAMNOTOPTIONAL          0x8002000FL
  7986.  
  7987. //
  7988. // MessageId: DISP_E_BADCALLEE
  7989. //
  7990. // MessageText:
  7991. //
  7992. //  Invalid callee.
  7993. //
  7994. #define DISP_E_BADCALLEE                 0x80020010L
  7995.  
  7996. //
  7997. // MessageId: DISP_E_NOTACOLLECTION
  7998. //
  7999. // MessageText:
  8000. //
  8001. //  Does not support a collection.
  8002. //
  8003. #define DISP_E_NOTACOLLECTION            0x80020011L
  8004.  
  8005. //
  8006. // MessageId: TYPE_E_BUFFERTOOSMALL
  8007. //
  8008. // MessageText:
  8009. //
  8010. //  Buffer too small.
  8011. //
  8012. #define TYPE_E_BUFFERTOOSMALL            0x80028016L
  8013.  
  8014. //
  8015. // MessageId: TYPE_E_INVDATAREAD
  8016. //
  8017. // MessageText:
  8018. //
  8019. //  Old format or invalid type library.
  8020. //
  8021. #define TYPE_E_INVDATAREAD               0x80028018L
  8022.  
  8023. //
  8024. // MessageId: TYPE_E_UNSUPFORMAT
  8025. //
  8026. // MessageText:
  8027. //
  8028. //  Old format or invalid type library.
  8029. //
  8030. #define TYPE_E_UNSUPFORMAT               0x80028019L
  8031.  
  8032. //
  8033. // MessageId: TYPE_E_REGISTRYACCESS
  8034. //
  8035. // MessageText:
  8036. //
  8037. //  Error accessing the OLE registry.
  8038. //
  8039. #define TYPE_E_REGISTRYACCESS            0x8002801CL
  8040.  
  8041. //
  8042. // MessageId: TYPE_E_LIBNOTREGISTERED
  8043. //
  8044. // MessageText:
  8045. //
  8046. //  Library not registered.
  8047. //
  8048. #define TYPE_E_LIBNOTREGISTERED          0x8002801DL
  8049.  
  8050. //
  8051. // MessageId: TYPE_E_UNDEFINEDTYPE
  8052. //
  8053. // MessageText:
  8054. //
  8055. //  Bound to unknown type.
  8056. //
  8057. #define TYPE_E_UNDEFINEDTYPE             0x80028027L
  8058.  
  8059. //
  8060. // MessageId: TYPE_E_QUALIFIEDNAMEDISALLOWED
  8061. //
  8062. // MessageText:
  8063. //
  8064. //  Qualified name disallowed.
  8065. //
  8066. #define TYPE_E_QUALIFIEDNAMEDISALLOWED   0x80028028L
  8067.  
  8068. //
  8069. // MessageId: TYPE_E_INVALIDSTATE
  8070. //
  8071. // MessageText:
  8072. //
  8073. //  Invalid forward reference, or reference to uncompiled type.
  8074. //
  8075. #define TYPE_E_INVALIDSTATE              0x80028029L
  8076.  
  8077. //
  8078. // MessageId: TYPE_E_WRONGTYPEKIND
  8079. //
  8080. // MessageText:
  8081. //
  8082. //  Type mismatch.
  8083. //
  8084. #define TYPE_E_WRONGTYPEKIND             0x8002802AL
  8085.  
  8086. //
  8087. // MessageId: TYPE_E_ELEMENTNOTFOUND
  8088. //
  8089. // MessageText:
  8090. //
  8091. //  Element not found.
  8092. //
  8093. #define TYPE_E_ELEMENTNOTFOUND           0x8002802BL
  8094.  
  8095. //
  8096. // MessageId: TYPE_E_AMBIGUOUSNAME
  8097. //
  8098. // MessageText:
  8099. //
  8100. //  Ambiguous name.
  8101. //
  8102. #define TYPE_E_AMBIGUOUSNAME             0x8002802CL
  8103.  
  8104. //
  8105. // MessageId: TYPE_E_NAMECONFLICT
  8106. //
  8107. // MessageText:
  8108. //
  8109. //  Name already exists in the library.
  8110. //
  8111. #define TYPE_E_NAMECONFLICT              0x8002802DL
  8112.  
  8113. //
  8114. // MessageId: TYPE_E_UNKNOWNLCID
  8115. //
  8116. // MessageText:
  8117. //
  8118. //  Unknown LCID.
  8119. //
  8120. #define TYPE_E_UNKNOWNLCID               0x8002802EL
  8121.  
  8122. //
  8123. // MessageId: TYPE_E_DLLFUNCTIONNOTFOUND
  8124. //
  8125. // MessageText:
  8126. //
  8127. //  Function not defined in specified DLL.
  8128. //
  8129. #define TYPE_E_DLLFUNCTIONNOTFOUND       0x8002802FL
  8130.  
  8131. //
  8132. // MessageId: TYPE_E_BADMODULEKIND
  8133. //
  8134. // MessageText:
  8135. //
  8136. //  Wrong module kind for the operation.
  8137. //
  8138. #define TYPE_E_BADMODULEKIND             0x800288BDL
  8139.  
  8140. //
  8141. // MessageId: TYPE_E_SIZETOOBIG
  8142. //
  8143. // MessageText:
  8144. //
  8145. //  Size may not exceed 64K.
  8146. //
  8147. #define TYPE_E_SIZETOOBIG                0x800288C5L
  8148.  
  8149. //
  8150. // MessageId: TYPE_E_DUPLICATEID
  8151. //
  8152. // MessageText:
  8153. //
  8154. //  Duplicate ID in inheritance hierarchy.
  8155. //
  8156. #define TYPE_E_DUPLICATEID               0x800288C6L
  8157.  
  8158. //
  8159. // MessageId: TYPE_E_INVALIDID
  8160. //
  8161. // MessageText:
  8162. //
  8163. //  Incorrect inheritance depth in standard OLE hmember.
  8164. //
  8165. #define TYPE_E_INVALIDID                 0x800288CFL
  8166.  
  8167. //
  8168. // MessageId: TYPE_E_TYPEMISMATCH
  8169. //
  8170. // MessageText:
  8171. //
  8172. //  Type mismatch.
  8173. //
  8174. #define TYPE_E_TYPEMISMATCH              0x80028CA0L
  8175.  
  8176. //
  8177. // MessageId: TYPE_E_OUTOFBOUNDS
  8178. //
  8179. // MessageText:
  8180. //
  8181. //  Invalid number of arguments.
  8182. //
  8183. #define TYPE_E_OUTOFBOUNDS               0x80028CA1L
  8184.  
  8185. //
  8186. // MessageId: TYPE_E_IOERROR
  8187. //
  8188. // MessageText:
  8189. //
  8190. //  I/O Error.
  8191. //
  8192. #define TYPE_E_IOERROR                   0x80028CA2L
  8193.  
  8194. //
  8195. // MessageId: TYPE_E_CANTCREATETMPFILE
  8196. //
  8197. // MessageText:
  8198. //
  8199. //  Error creating unique tmp file.
  8200. //
  8201. #define TYPE_E_CANTCREATETMPFILE         0x80028CA3L
  8202.  
  8203. //
  8204. // MessageId: TYPE_E_CANTLOADLIBRARY
  8205. //
  8206. // MessageText:
  8207. //
  8208. //  Error loading type library/DLL.
  8209. //
  8210. #define TYPE_E_CANTLOADLIBRARY           0x80029C4AL
  8211.  
  8212. //
  8213. // MessageId: TYPE_E_INCONSISTENTPROPFUNCS
  8214. //
  8215. // MessageText:
  8216. //
  8217. //  Inconsistent property functions.
  8218. //
  8219. #define TYPE_E_INCONSISTENTPROPFUNCS     0x80029C83L
  8220.  
  8221. //
  8222. // MessageId: TYPE_E_CIRCULARTYPE
  8223. //
  8224. // MessageText:
  8225. //
  8226. //  Circular dependency between types/modules.
  8227. //
  8228. #define TYPE_E_CIRCULARTYPE              0x80029C84L
  8229.  
  8230. // ******************
  8231. // FACILITY_STORAGE
  8232. // ******************
  8233. //
  8234. // MessageId: STG_E_INVALIDFUNCTION
  8235. //
  8236. // MessageText:
  8237. //
  8238. //  Unable to perform requested operation.
  8239. //
  8240. #define STG_E_INVALIDFUNCTION            0x80030001L
  8241.  
  8242. //
  8243. // MessageId: STG_E_FILENOTFOUND
  8244. //
  8245. // MessageText:
  8246. //
  8247. //  %1 could not be found.
  8248. //
  8249. #define STG_E_FILENOTFOUND               0x80030002L
  8250.  
  8251. //
  8252. // MessageId: STG_E_PATHNOTFOUND
  8253. //
  8254. // MessageText:
  8255. //
  8256. //  The path %1 could not be found.
  8257. //
  8258. #define STG_E_PATHNOTFOUND               0x80030003L
  8259.  
  8260. //
  8261. // MessageId: STG_E_TOOMANYOPENFILES
  8262. //
  8263. // MessageText:
  8264. //
  8265. //  There are insufficient resources to open another file.
  8266. //
  8267. #define STG_E_TOOMANYOPENFILES           0x80030004L
  8268.  
  8269. //
  8270. // MessageId: STG_E_ACCESSDENIED
  8271. //
  8272. // MessageText:
  8273. //
  8274. //  Access Denied.
  8275. //
  8276. #define STG_E_ACCESSDENIED               0x80030005L
  8277.  
  8278. //
  8279. // MessageId: STG_E_INVALIDHANDLE
  8280. //
  8281. // MessageText:
  8282. //
  8283. //  Attempted an operation on an invalid object.
  8284. //
  8285. #define STG_E_INVALIDHANDLE              0x80030006L
  8286.  
  8287. //
  8288. // MessageId: STG_E_INSUFFICIENTMEMORY
  8289. //
  8290. // MessageText:
  8291. //
  8292. //  There is insufficient memory available to complete operation.
  8293. //
  8294. #define STG_E_INSUFFICIENTMEMORY         0x80030008L
  8295.  
  8296. //
  8297. // MessageId: STG_E_INVALIDPOINTER
  8298. //
  8299. // MessageText:
  8300. //
  8301. //  Invalid pointer error.
  8302. //
  8303. #define STG_E_INVALIDPOINTER             0x80030009L
  8304.  
  8305. //
  8306. // MessageId: STG_E_NOMOREFILES
  8307. //
  8308. // MessageText:
  8309. //
  8310. //  There are no more entries to return.
  8311. //
  8312. #define STG_E_NOMOREFILES                0x80030012L
  8313.  
  8314. //
  8315. // MessageId: STG_E_DISKISWRITEPROTECTED
  8316. //
  8317. // MessageText:
  8318. //
  8319. //  Disk is write-protected.
  8320. //
  8321. #define STG_E_DISKISWRITEPROTECTED       0x80030013L
  8322.  
  8323. //
  8324. // MessageId: STG_E_SEEKERROR
  8325. //
  8326. // MessageText:
  8327. //
  8328. //  An error occurred during a seek operation.
  8329. //
  8330. #define STG_E_SEEKERROR                  0x80030019L
  8331.  
  8332. //
  8333. // MessageId: STG_E_WRITEFAULT
  8334. //
  8335. // MessageText:
  8336. //
  8337. //  A disk error occurred during a write operation.
  8338. //
  8339. #define STG_E_WRITEFAULT                 0x8003001DL
  8340.  
  8341. //
  8342. // MessageId: STG_E_READFAULT
  8343. //
  8344. // MessageText:
  8345. //
  8346. //  A disk error occurred during a read operation.
  8347. //
  8348. #define STG_E_READFAULT                  0x8003001EL
  8349.  
  8350. //
  8351. // MessageId: STG_E_SHAREVIOLATION
  8352. //
  8353. // MessageText:
  8354. //
  8355. //  A share violation has occurred.
  8356. //
  8357. #define STG_E_SHAREVIOLATION             0x80030020L
  8358.  
  8359. //
  8360. // MessageId: STG_E_LOCKVIOLATION
  8361. //
  8362. // MessageText:
  8363. //
  8364. //  A lock violation has occurred.
  8365. //
  8366. #define STG_E_LOCKVIOLATION              0x80030021L
  8367.  
  8368. //
  8369. // MessageId: STG_E_FILEALREADYEXISTS
  8370. //
  8371. // MessageText:
  8372. //
  8373. //  %1 already exists.
  8374. //
  8375. #define STG_E_FILEALREADYEXISTS          0x80030050L
  8376.  
  8377. //
  8378. // MessageId: STG_E_INVALIDPARAMETER
  8379. //
  8380. // MessageText:
  8381. //
  8382. //  Invalid parameter error.
  8383. //
  8384. #define STG_E_INVALIDPARAMETER           0x80030057L
  8385.  
  8386. //
  8387. // MessageId: STG_E_MEDIUMFULL
  8388. //
  8389. // MessageText:
  8390. //
  8391. //  There is insufficient disk space to complete operation.
  8392. //
  8393. #define STG_E_MEDIUMFULL                 0x80030070L
  8394.  
  8395. //
  8396. // MessageId: STG_E_ABNORMALAPIEXIT
  8397. //
  8398. // MessageText:
  8399. //
  8400. //  An API call exited abnormally.
  8401. //
  8402. #define STG_E_ABNORMALAPIEXIT            0x800300FAL
  8403.  
  8404. //
  8405. // MessageId: STG_E_INVALIDHEADER
  8406. //
  8407. // MessageText:
  8408. //
  8409. //  The file %1 is not a valid compound file.
  8410. //
  8411. #define STG_E_INVALIDHEADER              0x800300FBL
  8412.  
  8413. //
  8414. // MessageId: STG_E_INVALIDNAME
  8415. //
  8416. // MessageText:
  8417. //
  8418. //  The name %1 is not valid.
  8419. //
  8420. #define STG_E_INVALIDNAME                0x800300FCL
  8421.  
  8422. //
  8423. // MessageId: STG_E_UNKNOWN
  8424. //
  8425. // MessageText:
  8426. //
  8427. //  An unexpected error occurred.
  8428. //
  8429. #define STG_E_UNKNOWN                    0x800300FDL
  8430.  
  8431. //
  8432. // MessageId: STG_E_UNIMPLEMENTEDFUNCTION
  8433. //
  8434. // MessageText:
  8435. //
  8436. //  That function is not implemented.
  8437. //
  8438. #define STG_E_UNIMPLEMENTEDFUNCTION      0x800300FEL
  8439.  
  8440. //
  8441. // MessageId: STG_E_INVALIDFLAG
  8442. //
  8443. // MessageText:
  8444. //
  8445. //  Invalid flag error.
  8446. //
  8447. #define STG_E_INVALIDFLAG                0x800300FFL
  8448.  
  8449. //
  8450. // MessageId: STG_E_INUSE
  8451. //
  8452. // MessageText:
  8453. //
  8454. //  Attempted to use an object that is busy.
  8455. //
  8456. #define STG_E_INUSE                      0x80030100L
  8457.  
  8458. //
  8459. // MessageId: STG_E_NOTCURRENT
  8460. //
  8461. // MessageText:
  8462. //
  8463. //  The storage has been changed since the last commit.
  8464. //
  8465. #define STG_E_NOTCURRENT                 0x80030101L
  8466.  
  8467. //
  8468. // MessageId: STG_E_REVERTED
  8469. //
  8470. // MessageText:
  8471. //
  8472. //  Attempted to use an object that has ceased to exist.
  8473. //
  8474. #define STG_E_REVERTED                   0x80030102L
  8475.  
  8476. //
  8477. // MessageId: STG_E_CANTSAVE
  8478. //
  8479. // MessageText:
  8480. //
  8481. //  Can't save.
  8482. //
  8483. #define STG_E_CANTSAVE                   0x80030103L
  8484.  
  8485. //
  8486. // MessageId: STG_E_OLDFORMAT
  8487. //
  8488. // MessageText:
  8489. //
  8490. //  The compound file %1 was produced with an incompatible version of storage.
  8491. //
  8492. #define STG_E_OLDFORMAT                  0x80030104L
  8493.  
  8494. //
  8495. // MessageId: STG_E_OLDDLL
  8496. //
  8497. // MessageText:
  8498. //
  8499. //  The compound file %1 was produced with a newer version of storage.
  8500. //
  8501. #define STG_E_OLDDLL                     0x80030105L
  8502.  
  8503. //
  8504. // MessageId: STG_E_SHAREREQUIRED
  8505. //
  8506. // MessageText:
  8507. //
  8508. //  Share.exe or equivalent is required for operation.
  8509. //
  8510. #define STG_E_SHAREREQUIRED              0x80030106L
  8511.  
  8512. //
  8513. // MessageId: STG_E_NOTFILEBASEDSTORAGE
  8514. //
  8515. // MessageText:
  8516. //
  8517. //  Illegal operation called on non-file based storage.
  8518. //
  8519. #define STG_E_NOTFILEBASEDSTORAGE        0x80030107L
  8520.  
  8521. //
  8522. // MessageId: STG_E_EXTANTMARSHALLINGS
  8523. //
  8524. // MessageText:
  8525. //
  8526. //  Illegal operation called on object with extant marshallings.
  8527. //
  8528. #define STG_E_EXTANTMARSHALLINGS         0x80030108L
  8529.  
  8530. //
  8531. // MessageId: STG_S_CONVERTED
  8532. //
  8533. // MessageText:
  8534. //
  8535. //  The underlying file was converted to compound file format.
  8536. //
  8537. #define STG_S_CONVERTED                  0x00030200L
  8538.  
  8539. // ******************
  8540. // FACILITY_RPC
  8541. // ******************
  8542. //
  8543. // Codes 0x0-0x11 are propogated from 16 bit OLE.
  8544. //
  8545. //
  8546. // MessageId: RPC_E_CALL_REJECTED
  8547. //
  8548. // MessageText:
  8549. //
  8550. //  Call was rejected by callee.
  8551. //
  8552. #define RPC_E_CALL_REJECTED              0x80010001L
  8553.  
  8554. //
  8555. // MessageId: RPC_E_CALL_CANCELED
  8556. //
  8557. // MessageText:
  8558. //
  8559. //  Call was canceled by the message filter.
  8560. //
  8561. #define RPC_E_CALL_CANCELED              0x80010002L
  8562.  
  8563. //
  8564. // MessageId: RPC_E_CANTPOST_INSENDCALL
  8565. //
  8566. // MessageText:
  8567. //
  8568. //  The caller is dispatching an intertask SendMessage call and
  8569. //  cannot call out via PostMessage.
  8570. //
  8571. #define RPC_E_CANTPOST_INSENDCALL        0x80010003L
  8572.  
  8573. //
  8574. // MessageId: RPC_E_CANTCALLOUT_INASYNCCALL
  8575. //
  8576. // MessageText:
  8577. //
  8578. //  The caller is dispatching an asynchronous call and cannot
  8579. //  make an outgoing call on behalf of this call.
  8580. //
  8581. #define RPC_E_CANTCALLOUT_INASYNCCALL    0x80010004L
  8582.  
  8583. //
  8584. // MessageId: RPC_E_CANTCALLOUT_INEXTERNALCALL
  8585. //
  8586. // MessageText:
  8587. //
  8588. //  It is illegal to call out while inside message filter.
  8589. //
  8590. #define RPC_E_CANTCALLOUT_INEXTERNALCALL 0x80010005L
  8591.  
  8592. //
  8593. // MessageId: RPC_E_CONNECTION_TERMINATED
  8594. //
  8595. // MessageText:
  8596. //
  8597. //  The connection terminated or is in a bogus state
  8598. //  and cannot be used any more. Other connections
  8599. //  are still valid.
  8600. //
  8601. #define RPC_E_CONNECTION_TERMINATED      0x80010006L
  8602.  
  8603. //
  8604. // MessageId: RPC_E_SERVER_DIED
  8605. //
  8606. // MessageText:
  8607. //
  8608. //  The callee (server [not server application]) is not available
  8609. //  and disappeared; all connections are invalid.  The call may
  8610. //  have executed.
  8611. //
  8612. #define RPC_E_SERVER_DIED                0x80010007L
  8613.  
  8614. //
  8615. // MessageId: RPC_E_CLIENT_DIED
  8616. //
  8617. // MessageText:
  8618. //
  8619. //  The caller (client) disappeared while the callee (server) was
  8620. //  processing a call.
  8621. //
  8622. #define RPC_E_CLIENT_DIED                0x80010008L
  8623.  
  8624. //
  8625. // MessageId: RPC_E_INVALID_DATAPACKET
  8626. //
  8627. // MessageText:
  8628. //
  8629. //  The data packet with the marshalled parameter data is incorrect.
  8630. //
  8631. #define RPC_E_INVALID_DATAPACKET         0x80010009L
  8632.  
  8633. //
  8634. // MessageId: RPC_E_CANTTRANSMIT_CALL
  8635. //
  8636. // MessageText:
  8637. //
  8638. //  The call was not transmitted properly; the message queue
  8639. //  was full and was not emptied after yielding.
  8640. //
  8641. #define RPC_E_CANTTRANSMIT_CALL          0x8001000AL
  8642.  
  8643. //
  8644. // MessageId: RPC_E_CLIENT_CANTMARSHAL_DATA
  8645. //
  8646. // MessageText:
  8647. //
  8648. //  The client (caller) cannot marshall the parameter data - low memory, etc.
  8649. //
  8650. #define RPC_E_CLIENT_CANTMARSHAL_DATA    0x8001000BL
  8651.  
  8652. //
  8653. // MessageId: RPC_E_CLIENT_CANTUNMARSHAL_DATA
  8654. //
  8655. // MessageText:
  8656. //
  8657. //  The client (caller) cannot unmarshall the return data - low memory, etc.
  8658. //
  8659. #define RPC_E_CLIENT_CANTUNMARSHAL_DATA  0x8001000CL
  8660.  
  8661. //
  8662. // MessageId: RPC_E_SERVER_CANTMARSHAL_DATA
  8663. //
  8664. // MessageText:
  8665. //
  8666. //  The server (callee) cannot marshall the return data - low memory, etc.
  8667. //
  8668. #define RPC_E_SERVER_CANTMARSHAL_DATA    0x8001000DL
  8669.  
  8670. //
  8671. // MessageId: RPC_E_SERVER_CANTUNMARSHAL_DATA
  8672. //
  8673. // MessageText:
  8674. //
  8675. //  The server (callee) cannot unmarshall the parameter data - low memory, etc.
  8676. //
  8677. #define RPC_E_SERVER_CANTUNMARSHAL_DATA  0x8001000EL
  8678.  
  8679. //
  8680. // MessageId: RPC_E_INVALID_DATA
  8681. //
  8682. // MessageText:
  8683. //
  8684. //  Received data is invalid; could be server or client data.
  8685. //
  8686. #define RPC_E_INVALID_DATA               0x8001000FL
  8687.  
  8688. //
  8689. // MessageId: RPC_E_INVALID_PARAMETER
  8690. //
  8691. // MessageText:
  8692. //
  8693. //  A particular parameter is invalid and cannot be (un)marshalled.
  8694. //
  8695. #define RPC_E_INVALID_PARAMETER          0x80010010L
  8696.  
  8697. //
  8698. // MessageId: RPC_E_CANTCALLOUT_AGAIN
  8699. //
  8700. // MessageText:
  8701. //
  8702. //  There is no second outgoing call on same channel in DDE conversation.
  8703. //
  8704. #define RPC_E_CANTCALLOUT_AGAIN          0x80010011L
  8705.  
  8706. //
  8707. // MessageId: RPC_E_SERVER_DIED_DNE
  8708. //
  8709. // MessageText:
  8710. //
  8711. //  The callee (server [not server application]) is not available
  8712. //  and disappeared; all connections are invalid.  The call did not execute.
  8713. //
  8714. #define RPC_E_SERVER_DIED_DNE            0x80010012L
  8715.  
  8716. //
  8717. // MessageId: RPC_E_SYS_CALL_FAILED
  8718. //
  8719. // MessageText:
  8720. //
  8721. //  System call failed.
  8722. //
  8723. #define RPC_E_SYS_CALL_FAILED            0x80010100L
  8724.  
  8725. //
  8726. // MessageId: RPC_E_OUT_OF_RESOURCES
  8727. //
  8728. // MessageText:
  8729. //
  8730. //  Could not allocate some required resource (memory, events, ...)
  8731. //
  8732. #define RPC_E_OUT_OF_RESOURCES           0x80010101L
  8733.  
  8734. //
  8735. // MessageId: RPC_E_ATTEMPTED_MULTITHREAD
  8736. //
  8737. // MessageText:
  8738. //
  8739. //  Attempted to make calls on more than one thread in single threaded mode.
  8740. //
  8741. #define RPC_E_ATTEMPTED_MULTITHREAD      0x80010102L
  8742.  
  8743. //
  8744. // MessageId: RPC_E_NOT_REGISTERED
  8745. //
  8746. // MessageText:
  8747. //
  8748. //  The requested interface is not registered on the server object.
  8749. //
  8750. #define RPC_E_NOT_REGISTERED             0x80010103L
  8751.  
  8752. //
  8753. // MessageId: RPC_E_FAULT
  8754. //
  8755. // MessageText:
  8756. //
  8757. //  RPC could not call the server or could not return the results of calling the server.
  8758. //
  8759. #define RPC_E_FAULT                      0x80010104L
  8760.  
  8761. //
  8762. // MessageId: RPC_E_SERVERFAULT
  8763. //
  8764. // MessageText:
  8765. //
  8766. //  The server threw an exception.
  8767. //
  8768. #define RPC_E_SERVERFAULT                0x80010105L
  8769.  
  8770. //
  8771. // MessageId: RPC_E_CHANGED_MODE
  8772. //
  8773. // MessageText:
  8774. //
  8775. //  Cannot change thread mode after it is set.
  8776. //
  8777. #define RPC_E_CHANGED_MODE               0x80010106L
  8778.  
  8779. //
  8780. // MessageId: RPC_E_INVALIDMETHOD
  8781. //
  8782. // MessageText:
  8783. //
  8784. //  The method called does not exist on the server.
  8785. //
  8786. #define RPC_E_INVALIDMETHOD              0x80010107L
  8787.  
  8788. //
  8789. // MessageId: RPC_E_DISCONNECTED
  8790. //
  8791. // MessageText:
  8792. //
  8793. //  The object invoked has disconnected from its clients.
  8794. //
  8795. #define RPC_E_DISCONNECTED               0x80010108L
  8796.  
  8797. //
  8798. // MessageId: RPC_E_RETRY
  8799. //
  8800. // MessageText:
  8801. //
  8802. //  The object invoked chose not to process the call now.  Try again later.
  8803. //
  8804. #define RPC_E_RETRY                      0x80010109L
  8805.  
  8806. //
  8807. // MessageId: RPC_E_SERVERCALL_RETRYLATER
  8808. //
  8809. // MessageText:
  8810. //
  8811. //  The message filter indicated that the application is busy.
  8812. //
  8813. #define RPC_E_SERVERCALL_RETRYLATER      0x8001010AL
  8814.  
  8815. //
  8816. // MessageId: RPC_E_SERVERCALL_REJECTED
  8817. //
  8818. // MessageText:
  8819. //
  8820. //  The message filter rejected the call.
  8821. //
  8822. #define RPC_E_SERVERCALL_REJECTED        0x8001010BL
  8823.  
  8824. //
  8825. // MessageId: RPC_E_INVALID_CALLDATA
  8826. //
  8827. // MessageText:
  8828. //
  8829. //  A call control interfaces was called with invalid data.
  8830. //
  8831. #define RPC_E_INVALID_CALLDATA           0x8001010CL
  8832.  
  8833. //
  8834. // MessageId: RPC_E_CANTCALLOUT_ININPUTSYNCCALL
  8835. //
  8836. // MessageText:
  8837. //
  8838. //  An outgoing call cannot be made since the application is dispatching an input-synchronous call.
  8839. //
  8840. #define RPC_E_CANTCALLOUT_ININPUTSYNCCALL 0x8001010DL
  8841.  
  8842. //
  8843. // MessageId: RPC_E_WRONG_THREAD
  8844. //
  8845. // MessageText:
  8846. //
  8847. //  The application called an interface that was marshalled for a different thread.
  8848. //
  8849. #define RPC_E_WRONG_THREAD               0x8001010EL
  8850.  
  8851. //
  8852. // MessageId: RPC_E_THREAD_NOT_INIT
  8853. //
  8854. // MessageText:
  8855. //
  8856. //  CoInitialize has not been called on the current thread.
  8857. //
  8858. #define RPC_E_THREAD_NOT_INIT            0x8001010FL
  8859.  
  8860. //
  8861. // MessageId: RPC_E_UNEXPECTED
  8862. //
  8863. // MessageText:
  8864. //
  8865. //  An internal error occurred.
  8866. //
  8867. #define RPC_E_UNEXPECTED                 0x8001FFFFL
  8868.  
  8869.  
  8870.  
  8871. #endif      // ifndef __SCODE_H__
  8872.